TG: - Deleted ERP.dmi

- Moved some objects into /effect
- Removed the debugger object
Revision: r3739
Author: 	 baloh.matevz
This commit is contained in:
Erthilo
2012-06-07 02:41:38 +01:00
parent 3fb579d188
commit 2e8f1932a8
14 changed files with 246 additions and 304 deletions
+2 -2
View File
@@ -86,7 +86,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
/mob/dead/observer/Move(NewLoc, direct)
if(NewLoc)
loc = NewLoc
for(var/obj/step_trigger/S in NewLoc)
for(var/obj/effect/step_trigger/S in NewLoc)
S.HasEntered(src)
return
@@ -100,7 +100,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
if((direct & WEST) && x > 1)
x--
for(var/obj/step_trigger/S in locate(x, y, z))
for(var/obj/effect/step_trigger/S in locate(x, y, z))
S.HasEntered(src)
/mob/dead/observer/examine()