Fixes Compile Error while testing, accidental regression from missed merge (#21658)

Fix accidental regression from missed merge
This commit is contained in:
Funce
2023-06-12 04:22:27 +12:00
committed by GitHub
parent b0376b99ea
commit f9b48a5539
-6
View File
@@ -50,12 +50,6 @@ GLOBAL_LIST_EMPTY(default_lighting_underlays_by_z)
return ..()
/datum/lighting_object/proc/update()
#ifdef VISUALIZE_LIGHT_UPDATES
affected_turf.add_atom_colour(COLOR_BLUE_LIGHT, ADMIN_COLOUR_PRIORITY)
animate(affected_turf, 10, color = null)
addtimer(CALLBACK(affected_turf, /atom/proc/remove_atom_colour, ADMIN_COLOUR_PRIORITY, COLOR_BLUE_LIGHT), 10, TIMER_UNIQUE|TIMER_OVERRIDE)
#endif
// To the future coder who sees this and thinks
// "Why didn't he just use a loop?"
// Well my man, it's because the loop performed like shit.