Fixes a couple of is errors with missing functions.
Added isDrone as macro

restored the various is non macro functions. i don't know how or if they could be macro-ized
This commit is contained in:
NanakoAC
2016-11-22 20:25:28 +02:00
committed by skull132
parent e1b604df92
commit 879f3faef8
4 changed files with 42 additions and 3 deletions
+1 -1
View File
@@ -182,7 +182,7 @@ Works together with spawning an observer, noted above.
//It is also set in the mob/death proc
if (isanimal(src))
set_death_time(ANIMAL, world.time)
else if (ispAI(src) || isdrone(src))
else if (ispAI(src) || isDrone(src))
set_death_time(MINISYNTH, world.time)
else
set_death_time(CREW, world.time)//Crew is the fallback