mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 20:11:04 +01:00
Fixes some bugs. (#15816)
* Fixes some bugs. * that too --------- Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
@@ -50,14 +50,14 @@
|
||||
qdel(src)
|
||||
return
|
||||
|
||||
/obj/structure/lattice/attackby(obj/item/C as obj, mob/user as mob)
|
||||
/obj/structure/lattice/attackby(obj/item/C, mob/user)
|
||||
if (istype(C, /obj/item/stack/tile/floor))
|
||||
var/turf/T = get_turf(src)
|
||||
T.attackby(C, user) //BubbleWrap - hand this off to the underlying turf instead
|
||||
return
|
||||
if (C.iswelder())
|
||||
var/obj/item/weldingtool/WT = C
|
||||
if(WT.use(0, user))
|
||||
if(WT.use(1, user))
|
||||
to_chat(user, "<span class='notice'>Slicing lattice joints ...</span>")
|
||||
new /obj/item/stack/rods(src.loc)
|
||||
qdel(src)
|
||||
|
||||
Reference in New Issue
Block a user