Speeds up init by ignoring contrib guidelines (#16217)

This commit is contained in:
Wildkins
2023-04-19 20:57:56 +00:00
committed by GitHub
parent 5cbd5dcc5a
commit c8d4ef3b97
19 changed files with 35 additions and 35 deletions
+3 -3
View File
@@ -42,7 +42,7 @@ var/list/admin_verbs_lighting = list(
SSlighting.corner_queue = list()
SSlighting.overlay_queue = list()
/client/proc/lighting_reconsider_target(turf/T in turfs)
/client/proc/lighting_reconsider_target(turf/T in world)
set category = "Lighting"
set name = "Reconsider Visibility"
set desc = "Triggers a visibility update for a turf."
@@ -57,7 +57,7 @@ var/list/admin_verbs_lighting = list(
T.reconsider_lights()
/client/proc/lighting_build_overlay(turf/T in turfs)
/client/proc/lighting_build_overlay(turf/T in world)
set category = "Lighting"
set name = "Build Overlay"
set desc = "Builds a lighting overlay for a turf if it does not have one."
@@ -72,7 +72,7 @@ var/list/admin_verbs_lighting = list(
T.lighting_build_overlay()
/client/proc/lighting_clear_overlay(turf/T in turfs)
/client/proc/lighting_clear_overlay(turf/T in world)
set category = "Lighting"
set name = "Clear Overlay"
set desc = "Clears a lighting overlay for a turf if it has one."