mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 16:42:13 +00:00
11 lines
434 B
Plaintext
11 lines
434 B
Plaintext
/datum/expansion/multitool/store/interact(var/obj/item/device/multitool/M, var/mob/user)
|
|
if(CanUseTopic(user) != STATUS_INTERACTIVE)
|
|
return
|
|
|
|
if(M.get_buffer() == holder)
|
|
M.set_buffer(null)
|
|
user << "<span class='warning'>You purge the connection data of \the [holder] from \the [M].</span>"
|
|
else
|
|
M.set_buffer(holder)
|
|
user << "<span class='notice'>You load connection data from \the [holder] to \the [M].</span>"
|