mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-19 22:51:40 +00:00
- The cost of maintaining these lists is more than the benefit of having them (mostly used only for debugging code)
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)
|