mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 13:06:44 +01:00
* AutoDoc, bye useless comments, and some flair * WHEW * blele * GLOB.machines * Funny game * Forgor * Appease the linter * asdasd * chairs * asdsad * asdfasdf * wuh if * bruh
11 lines
237 B
Plaintext
11 lines
237 B
Plaintext
/datum/admin_secret_item/fun_secret/fix_all_lights
|
|
name = "Fix All Lights"
|
|
|
|
/datum/admin_secret_item/fun_secret/fix_all_lights/execute(var/mob/user)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
for(var/obj/machinery/light/L in GLOB.machines)
|
|
L.fix()
|