Krausus proc/isSSD change

This commit is contained in:
Kyep
2016-07-21 03:55:25 -07:00
parent 74931bdd8d
commit e08a7a2878
+2 -6
View File
@@ -34,12 +34,8 @@
return 1
return 0
proc/isSSD(A)
if(istype(A, /mob))
var/mob/M = A
if(M.player_logged)
return 1
return 0
proc/isSSD(mob/M)
return istype(M) && M.player_logged
proc/isAntag(A)
if(istype(A, /mob/living/carbon))