mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-19 12:13:38 +01:00
3995338290
Co-authored-by: Raeschen <rycoop29@gmail.com>
11 lines
232 B
Plaintext
11 lines
232 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 machines)
|
|
L.fix()
|