mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 04:57:12 +01:00
Replace most (if not all) output << operators with to_chat(user, message)
Currently, to_chat is literally just a proc that does user << message. But it'll let us do output modification in the future, especially for something like Goon's HTML chat. Big thanks to PJB for his to_chat script, see https://github.com/d3athrow/vgstation13/pull/6625 for more details.
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
if(!interactable() || istype(usr,/mob/living/silicon))
|
||||
return 0
|
||||
if(!computer.net)
|
||||
usr << "An indecipherable set of code flicks across the screen. Nothing else happens."
|
||||
to_chat(usr, "An indecipherable set of code flicks across the screen. Nothing else happens.")
|
||||
|
||||
return
|
||||
var/list/results = computer.net.get_machines
|
||||
Reference in New Issue
Block a user