mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-07-10 22:52:41 +01:00
5c4bde965a
Reverse use of global lists where they hurt performance.
11 lines
252 B
Plaintext
11 lines
252 B
Plaintext
/datum/admin_secret_item/fun_secret/remove_all_clothing
|
|
name = "Remove ALL Clothing"
|
|
|
|
/datum/admin_secret_item/fun_secret/remove_all_clothing/execute(var/mob/user)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
for(var/obj/item/clothing/O in world)
|
|
qdel(O)
|