Skip to content

Commit

Permalink
TGS Test Merge (#6075)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blue authored and Blue committed Oct 15, 2023
2 parents 1a23e37 + 4f81ed7 commit b5f38c4
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@ var/global/last_message_id = 0
for(var/datum/comm_message_listener/l in comm_message_listeners)
l.Add(message)

// todo: refactor

//Old console support
for (var/obj/machinery/computer/communications/comm in GLOB.machines)
if (!(comm.machine_stat & (BROKEN | NOPOWER)) && comm.prints_intercept)
var/obj/item/paper/intercept = new /obj/item/paper( comm.loc )
intercept.name = message_title
intercept.info = message_text

comm.messagetitle.Add(message_title)
comm.messagetext.Add(message_text)

/datum/comm_message_listener
var/list/messages

Expand Down

0 comments on commit b5f38c4

Please sign in to comment.