The moved event again returns the correct result from parent.

Fixes #12072.
Fixes #12075.
Fixes #12076.
Fixes #12078.
Fixes #12096.
This commit is contained in:
PsiOmegaDelta
2016-02-03 21:54:30 +01:00
parent 05671a06cb
commit 759031be74
3 changed files with 32 additions and 1 deletions
+2 -1
View File
@@ -20,7 +20,8 @@ var/datum/observ/moved/moved_event = new()
/atom/movable/Move()
var/old_loc = loc
if(..())
. = ..()
if(.)
moved_event.raise_event(list(src, old_loc, loc))
/atom/movable/proc/move_to_destination(var/atom/movable/am, var/old_loc, var/new_loc)