mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-26 05:26:24 +01:00
Converts our own uses of PoolOrNew to use just new()
This commit is contained in:
@@ -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 ..()
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user