mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-25 01:22:24 +00:00
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)
|