for(var/obj/spells/poison/the_spell in src.overlays)
src.overlays -= the_spell
for(var/obj/spells/boltboom/the_spell in src.overlays)
src.overlays -= the_spell
Problem description:
So.. I cannot do somethng like this?
Code:
for(var/obj/spells/poison/the_spell in src.overlays) Problem description: So.. I cannot do somethng like this? |
Actually, a lot of the reason that the overlays list is different is because internally, BYOND keeps track of "appearances" by an internal ID handle. This keeps the engine from having to send too much unique data across the network.
Basically, your best bet is to set up a builder like Fireking has set up for you, and tie it to an internal list you've made yourself that allows you to interact with objects like you would expect. |
To be on the safe side, checking the length of managed_overlays after you've removed it would be a tad better, as of right now you have no way of properly managing managed_overlays to prevent redundancies.
atom/proc/remove_overlay(x) |
And adding_overlay, so you don't have to worry about if the list exists or not
atom/proc/add_overlay(x) There's also a lot of other things you could do! Like making the overlays automatically regenerate when you remove an overlay. atom/proc/remove_overlay(x) |
So if you put a type path in the managed_overlays list, you'll be able to check that path for its path later on... like this
The reference says: