mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-06-09 16:24:01 +01:00
be73b8c36a
Removes a very large amount of world loops. Adds a macro to painlessly generate a global list, and the needed code to modify the list when an object is made or deleted automatically. Cleans up some commented out code.
11 lines
282 B
Plaintext
11 lines
282 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 all_clothing)
|
|
qdel(O)
|