del(locate("[src] house"))
tried adding the obj to a list on creation then deleting whats in the list. I tried using for;
for(var/obj/House/t in world)
if(t.tag == "[src] house")
del(t)
or making it a variable
var/obj/t = locate("[src] house")
del(t)
but nothing works. I'm sure I can delete it because I have a regular delete verb that works on the house. how the hell do i delete it
won't work because locate doesn't work with strings.
Are you sure there's an object that exists with that tag?
Again that's not how locate works.