From 6584dbf80defb56681152da8d596a4e21beb24a1 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Thu, 10 Jan 2019 15:59:25 -0600 Subject: [PATCH 1/2] Merge pull request #5812 from Verkister/patch-19 Fixes lift and shuttle moves not updating lighting --- code/_helpers/unsorted.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/_helpers/unsorted.dm b/code/_helpers/unsorted.dm index 7f1ff432e83..e21ee92879e 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)