Files
CHOMPStation2/code/modules/admin/secrets/fun_secrets/remove_all_clothing.dm
2024-02-16 10:54:47 +01:00

11 lines
242 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)