Skip to content

Commit

Permalink
Merge pull request tgstation#6385 from HippieStation/upstream-merge-3…
Browse files Browse the repository at this point in the history
…5169

[MIRROR] Fixes iscatperson helper
  • Loading branch information
Pyko authored Feb 1, 2018
2 parents 06dc6dc + 7e169dc commit 4f56738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/__DEFINES/is_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
#define ishumanbasic(A) (is_species(A, /datum/species/human))

//why arent catpeople a subspecies
#define iscatperson(A) (ishumanbasic(A) && ( A.dna.features["ears"] == "Cat" || A.dna.features["human_tail"] == "Cat") )
#define iscatperson(A) (ishumanbasic(A) && ( A.dna.features["ears"] == "Cat" || A.dna.features["tail_human"] == "Cat") )

//more carbon mobs
#define ismonkey(A) (istype(A, /mob/living/carbon/monkey))
Expand Down

0 comments on commit 4f56738

Please sign in to comment.