Skip to content

Commit

Permalink
yess
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsVyzo committed Jan 21, 2024
1 parent 9e41056 commit f491c0b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions code/modules/admin/tabs/event_tab.dm
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,11 @@
if(!admin_holder)
return

var/list/options = list("Weyland-Yutani", "High Command", "Provost", "Press", "CMB", "UPP", "TWE", "CLF", "Other", "Cancel")
var/list/options = list(
"Weyland-Yutani", "High Command", "Provost", "Press",
"Colonial Marshal Bureau", "Union of Progressive Peoples",
"Three World Empire", "Colonial Liberation Front",
"Other", "Cancel")
var/answer = tgui_input_list(src, "Which kind of faxes would you like to see?", "Faxes", options)
switch(answer)
if("Weyland-Yutani")
Expand Down Expand Up @@ -363,7 +367,7 @@
body += "<br><br>"

body += "<br><br></body>"
show_browser(src, body, "Faxes to Press organizations", "otherfaxviewer", "size=300x600")
show_browser(src, body, "Faxes to Press organizations", "pressfaxviewer", "size=300x600")

if("Colonial Marshal Bureau")
var/body = "<body>"
Expand Down
1 change: 1 addition & 0 deletions code/modules/admin/topic/topic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1199,6 +1199,7 @@
message_admins(SPAN_STAFF_IC("[key_name_admin(src.owner)] replied to a fax message from [key_name_admin(H)]"), 1)
return
to_chat(src.owner, "/red Unable to locate fax!")

else if(href_list["USCMFaxReply"])
var/mob/living/carbon/human/H = locate(href_list["USCMFaxReply"])
var/obj/structure/machinery/faxmachine/fax = locate(href_list["originfax"])
Expand Down

0 comments on commit f491c0b

Please sign in to comment.