Heres my code and thanks in advance:
del(/obj/mining/Copper)
del(/obj/mining/Tin)
Copyright © 2024 BYOND Software.
All rights reserved.
ID:148596
Dec 20 2002, 6:38 pm
|
|
Heres my code and thanks in advance:
del(/obj/mining/Copper) del(/obj/mining/Tin) |
In response to Lummox JR
|
|
thank
|
Same reason your other code didn't work: These are type paths, not actual atoms in your contents. What you need is to del(locate(/obj/mining/Copper) in usr), and so on.
Lummox JR