Skip to content

Commit

Permalink
[MIRROR] Fixes two improper calls to ADD_TRAIT (magic mirror, robo cu…
Browse files Browse the repository at this point in the history
…stomer) [MDB IGNORE](#150)

* Fixes two improper calls to ADD_TRAIT (magic mirror, robo customer)  (#79072)

---------

Co-authored-by: MrMelbert <[email protected]>
  • Loading branch information
Steals-The-PRs and MrMelbert authored Oct 19, 2023
1 parent 61f35a1 commit 3cf2119
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/structures/mirror.dm
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/mirror/broken, 28)
to_chat(user, span_alert("You feel quite intelligent."))
// Prevents wizards from being soft locked out of everything
// If this stays after the species was changed once more, well, the magic mirror did it. It's magic i aint gotta explain shit
ADD_TRAIT(user, list(TRAIT_LITERATE, TRAIT_ADVANCEDTOOLUSER), SPECIES_TRAIT)
user.add_traits(list(TRAIT_LITERATE, TRAIT_ADVANCEDTOOLUSER), SPECIES_TRAIT)
return TRUE

/obj/structure/mirror/magic/lesser/Initialize(mapload)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

. = ..()

ADD_TRAIT(src, list(TRAIT_NOMOBSWAP, TRAIT_NO_TELEPORT, TRAIT_STRONG_GRABBER), INNATE_TRAIT) // never suffer a bitch to fuck with you
add_traits(list(TRAIT_NOMOBSWAP, TRAIT_NO_TELEPORT, TRAIT_STRONG_GRABBER), INNATE_TRAIT) // never suffer a bitch to fuck with you
AddElement(/datum/element/footstep, FOOTSTEP_OBJ_ROBOT, 1, -6, sound_vary = TRUE)

ai_controller.set_blackboard_key(BB_CUSTOMER_CUSTOMERINFO, customer_info)
Expand Down

0 comments on commit 3cf2119

Please sign in to comment.