mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-29 11:32:13 +00:00
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)
|