Fixes some backwards logic

This commit is contained in:
Remie Richards
2014-12-12 16:48:06 +00:00
parent cdbd40f796
commit 5307ec5e96
+1 -1
View File
@@ -16,7 +16,7 @@
return
if(istype(H, /mob/dead/observer) && !affect_ghosts)
return
if(istype(H, /mob) && !mobs_only)
if(!istype(H, /mob) && mobs_only)
return
Trigger(H)