[MIRROR] Fixes a ... likely important bug with shuttle code.... (#2061)
* Fixes a ... likely important bug with shuttle code.... * Delete turf.dm.rej * Update turf.dm
This commit is contained in:
committed by
kevinz000
parent
556a8b7216
commit
8d9dc6dd13
@@ -13,8 +13,8 @@ All ShuttleMove procs go here
|
||||
// Called from the new turf before anything has been moved
|
||||
// Only gets called if fromShuttleMove returns true first
|
||||
/turf/proc/toShuttleMove(turf/oldT, shuttle_dir)
|
||||
for(var/i in 1 to contents.len)
|
||||
var/atom/movable/thing = contents[i]
|
||||
for(var/i in contents)
|
||||
var/atom/movable/thing = i
|
||||
if(ismob(thing))
|
||||
if(isliving(thing))
|
||||
var/mob/living/M = thing
|
||||
|
||||
Reference in New Issue
Block a user