mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 16:42:13 +00:00
This PR will lead us towards the Promised Day, for in its wake there shall be much celebration and ecstasy as this world becomes a world suitable for developer hegemony. The first strike is thusly; All << is converted into to_chat().
11 lines
448 B
Plaintext
11 lines
448 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)
|
|
to_chat(user, "<span class='warning'>You purge the connection data of \the [holder] from \the [M].</span>")
|
|
else
|
|
M.set_buffer(holder)
|
|
to_chat(user, "<span class='notice'>You load connection data from \the [holder] to \the [M].</span>")
|