Merge pull request #30631 from AnturK/literallyfasterthanlight

Fixes shuttle lighting issues
This commit is contained in:
oranges
2017-09-13 08:10:26 +10:00
committed by CitadelStationBot
parent eeadba6f18
commit f2adac2a9a
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -103,12 +103,12 @@
reconsider_lights()
/turf/proc/change_area(var/area/old_area, var/area/new_area)
if (new_area.dynamic_lighting != old_area.dynamic_lighting)
if (new_area.dynamic_lighting)
lighting_build_overlay()
else
lighting_clear_overlay()
if(SSlighting.initialized)
if (new_area.dynamic_lighting != old_area.dynamic_lighting)
if (new_area.dynamic_lighting)
lighting_build_overlay()
else
lighting_clear_overlay()
/turf/proc/get_corners()
if (!IS_DYNAMIC_LIGHTING(src) && !light_sources)