From 353cf724b6bee5e7b240c7c4ddc3b0c62e69ec8d Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 6 Jan 2019 17:53:35 +0200 Subject: [PATCH] Fixes lift and shuttle moves not updating lighting The light sources in elevators and shuttles no longer leave their lighting permanently stuck at the initial location. --- code/_helpers/unsorted.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/_helpers/unsorted.dm b/code/_helpers/unsorted.dm index 89fd32da7f..ebf52acaad 100644 --- a/code/_helpers/unsorted.dm +++ b/code/_helpers/unsorted.dm @@ -831,6 +831,7 @@ proc/GaussRandRound(var/sigma,var/roundto) //Move the objects. Not forceMove because the object isn't "moving" really, it's supposed to be on the "same" turf. for(var/obj/O in T) O.loc = X + O.update_light() //Move the mobs unless it's an AI eye or other eye type. for(var/mob/M in T)