[MIRROR] Fixes iscatperson helper (#5241)

* Fixes iscatperson check

* Fixes iscatperson helper
This commit is contained in:
CitadelStationBot
2018-02-04 22:20:42 -06:00
committed by Poojawa
parent 799038ab26
commit ae1a00f345
+1 -1
View File
@@ -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))