Files
Aurora.3/code/datums/expansions/multitool/store.dm
LordFowl 8d436c4a03 Converts all necessary << outputs into the to_chat() macro. (#6076)
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().
2019-03-10 23:39:03 +02:00

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>")