Converts our own uses of PoolOrNew to use just new()

This commit is contained in:
Leshana
2017-05-16 00:26:56 -04:00
parent 5ae26332fa
commit a8dbd7627d
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -71,9 +71,9 @@
if(WT.isOn())
if(WT.remove_fuel(0, user))
to_chat(user, "<span class='notice'>Slicing lattice joints ...</span>")
PoolOrNew(/obj/item/stack/rods, src.loc)
PoolOrNew(/obj/item/stack/rods, src.loc)
PoolOrNew(/obj/structure/lattice, src.loc)
new /obj/item/stack/rods(src.loc)
new /obj/item/stack/rods(src.loc)
new /obj/structure/lattice(src.loc)
qdel(src)
return ..()
+1 -1
View File
@@ -74,7 +74,7 @@
user << "<span class='notice'>You start connecting \the [R.name] to \the [src.name] ...</span>"
if(do_after(user, 5 SECONDS))
src.alpha = 0 // Note: I don't know why this is set, Eris did it, just trusting for now. ~Leshana
PoolOrNew(/obj/structure/catwalk, src.loc)
new /obj/structure/catwalk(src.loc)
qdel(src)
return
return