From 2045e3936fa260a9d77325478c0fbbd1755c8f03 Mon Sep 17 00:00:00 2001 From: Heroman Date: Sat, 3 Sep 2022 20:36:12 +1000 Subject: [PATCH] Fixes lighting runtime when moving hats on shuttles --- code/_helpers/turfs.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/_helpers/turfs.dm b/code/_helpers/turfs.dm index ddfcec7421e..515370c50d4 100644 --- a/code/_helpers/turfs.dm +++ b/code/_helpers/turfs.dm @@ -156,7 +156,8 @@ for(var/obj/O in T) if(O.simulated) O.loc = X - O.update_light() + if(O.light_system == STATIC_LIGHT) + O.update_light() if(z_level_change) // The objects still need to know if their z-level changed. O.onTransitZ(T.z, X.z)