to_chat replacing stream operator

This commit is contained in:
Arokha Sieyes
2020-02-15 12:40:07 -05:00
committed by Leshana
parent 5aaba55222
commit 5b15917d32
712 changed files with 4250 additions and 4220 deletions
@@ -188,13 +188,13 @@ var/global/maint_all_access = 0
/proc/make_maint_all_access()
maint_all_access = 1
world << "<font size=4 color='red'>Attention!</font>"
world << "<font color='red'>The maintenance access requirement has been revoked on all airlocks.</font>"
to_world("<font size=4 color='red'>Attention!</font>")
to_world("<font color='red'>The maintenance access requirement has been revoked on all airlocks.</font>")
/proc/revoke_maint_all_access()
maint_all_access = 0
world << "<font size=4 color='red'>Attention!</font>"
world << "<font color='red'>The maintenance access requirement has been readded on all maintenance airlocks.</font>"
to_world("<font size=4 color='red'>Attention!</font>")
to_world("<font color='red'>The maintenance access requirement has been readded on all maintenance airlocks.</font>")
/obj/machinery/door/airlock/allowed(mob/M)
if(maint_all_access && src.check_access_list(list(access_maint_tunnels)))