mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
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()
|