mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-27 18:41:59 +00:00
Speeds up init by ignoring contrib guidelines (#16217)
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
else
|
||||
alert("Admin jumping disabled")
|
||||
|
||||
/client/proc/jumptoturf(var/turf/T in turfs)
|
||||
/client/proc/jumptoturf(var/turf/T in world)
|
||||
set name = "Jump to Turf"
|
||||
set category = "Admin"
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
to_chat(usr, "Checking for overlapping pipes...")
|
||||
next_turf:
|
||||
for(var/turf/T in turfs)
|
||||
for(var/turf/T in world)
|
||||
for(var/dir in cardinal)
|
||||
var/list/connect_types = list(1 = 0, 2 = 0, 3 = 0)
|
||||
for(var/obj/machinery/atmospherics/pipe in T)
|
||||
|
||||
@@ -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."
|
||||
|
||||
@@ -69,8 +69,6 @@ var/list/mineral_can_smooth_with = list(
|
||||
|
||||
initialized = TRUE
|
||||
|
||||
turfs += src
|
||||
|
||||
if(isStationLevel(z))
|
||||
station_turfs += src
|
||||
|
||||
@@ -198,8 +196,6 @@ var/list/mineral_can_smooth_with = list(
|
||||
|
||||
initialized = TRUE
|
||||
|
||||
turfs += src
|
||||
|
||||
if(isStationLevel(z))
|
||||
station_turfs += src
|
||||
|
||||
@@ -658,8 +654,6 @@ var/list/asteroid_floor_smooth = list(
|
||||
base_desc = desc
|
||||
base_name = name
|
||||
|
||||
turfs += src
|
||||
|
||||
if(isStationLevel(z))
|
||||
station_turfs += src
|
||||
|
||||
|
||||
@@ -672,7 +672,7 @@ mob/living/carbon/human/proc/change_monitor()
|
||||
to_chat(src, "<span class='notice'>You return your vision to normal.</span>")
|
||||
src.stop_sight_update = 0
|
||||
|
||||
/mob/living/carbon/human/proc/shadow_step(var/turf/T in turfs)
|
||||
/mob/living/carbon/human/proc/shadow_step(var/turf/T in world)
|
||||
set category = "Abilities"
|
||||
set name = "Shadow Step"
|
||||
set desc = "Travel from place to place using the shadows."
|
||||
|
||||
@@ -683,8 +683,9 @@
|
||||
P.icon_state = "anom"
|
||||
P.name = "wormhole"
|
||||
var/list/pick_turfs = list()
|
||||
for(var/turf/simulated/floor/exit in turfs)
|
||||
if(isStationLevel(exit.z))
|
||||
for(var/turf/TIW in world)
|
||||
var/turf/simulated/floor/exit = TIW
|
||||
if(istype(exit) && isStationLevel(exit.z))
|
||||
pick_turfs += exit
|
||||
P.target = pick(pick_turfs)
|
||||
QDEL_IN(P, rand(150,300))
|
||||
|
||||
Reference in New Issue
Block a user