Deprecate the stream operator

This commit is contained in:
Arokha Sieyes
2020-02-12 19:38:43 -05:00
committed by Leshana
parent c8a8987610
commit 47ccc655db
762 changed files with 4492 additions and 4464 deletions
+6 -6
View File
@@ -25,21 +25,21 @@
if(istype(O, /obj/machinery/power/apc))
var/obj/machinery/power/apc/A = O
if(A.emagged || A.hacker)
user << "<span class='warning'>There is a software error with the device.</span>"
to_chat(user, "<span class='warning'>There is a software error with the device.</span>")
else
user << "<span class='notice'>The device's software appears to be fine.</span>"
to_chat(user, "<span class='notice'>The device's software appears to be fine.</span>")
return 1
if(istype(O, /obj/machinery/door))
var/obj/machinery/door/D = O
if(D.operating == -1)
user << "<span class='warning'>There is a software error with the device.</span>"
to_chat(user, "<span class='warning'>There is a software error with the device.</span>")
else
user << "<span class='notice'>The device's software appears to be fine.</span>"
to_chat(user, "<span class='notice'>The device's software appears to be fine.</span>")
return 1
else if(istype(O, /obj/machinery))
var/obj/machinery/A = O
if(A.emagged)
user << "<span class='warning'>There is a software error with the device.</span>"
to_chat(user, "<span class='warning'>There is a software error with the device.</span>")
else
user << "<span class='notice'>The device's software appears to be fine.</span>"
to_chat(user, "<span class='notice'>The device's software appears to be fine.</span>")
return 1