mob
verb
Build()
for(var/obj/build/T as typesof(/obj/build) in view(usr,0))
if(istype(T,/obj/build))
del(T)
new buildingtype(usr.loc) //buildingtype is the type of obj being made.
So, what exactly should I do?
Was thinking the new buildingtype(usr.loc) part, seeing as it's in the for() loop, might create a new buildingtype for each instance of /obj/build is found.