mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-04 06:22:14 +00:00
unused M errors (reverted from commit 55614bb2a6)
This commit is contained in:
@@ -33,7 +33,8 @@
|
||||
|
||||
if(panel_open)
|
||||
if(istype(I, /obj/item/device/multitool))
|
||||
I.buffer = src
|
||||
var/obj/item/device/multitool/M = I
|
||||
M.buffer = src
|
||||
user << "<span class='caution'>You save the data in the [I.name]'s buffer.</span>"
|
||||
else
|
||||
if(istype(I, /obj/item/device/multitool))
|
||||
|
||||
@@ -66,9 +66,10 @@
|
||||
W.loc = src
|
||||
user.visible_message("[user] inserts [W] into \the [src]'s GPS device slot.", "<span class='notice'>You insert [W] into \the [src]'s GPS device slot.</span>")
|
||||
else if(istype(W, /obj/item/device/multitool))
|
||||
if(W.buffer && istype(W.buffer, /obj/machinery/telepad))
|
||||
telepad = W.buffer
|
||||
W.buffer = null
|
||||
var/obj/item/device/multitool/M = W
|
||||
if(M.buffer && istype(M.buffer, /obj/machinery/telepad))
|
||||
telepad = M.buffer
|
||||
M.buffer = null
|
||||
user << "<span class='caution'>You upload the data from the [W.name]'s buffer.</span>"
|
||||
else
|
||||
..()
|
||||
|
||||
Reference in New Issue
Block a user