mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-19 14:42:25 +00:00
- The cost of maintaining these lists is more than the benefit of having them (mostly used only for debugging code)
11 lines
275 B
Plaintext
11 lines
275 B
Plaintext
/datum/admin_secret_item/fun_secret/remove_internal_clothing
|
|
name = "Remove 'Internal' Clothing"
|
|
|
|
/datum/admin_secret_item/fun_secret/remove_internal_clothing/execute(var/mob/user)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
for(var/obj/item/clothing/under/O in world)
|
|
qdel(O)
|