Paper Letterhead (#13155)

* fax letterhead 1

need to add correct paperbins on map and resize logos

* tweaks

* syndicate paper on syndicate base

* code improvements
This commit is contained in:
Ty-Omaha
2020-03-21 19:17:03 -04:00
committed by GitHub
parent de09a6011e
commit e691ea2b36
9 changed files with 64 additions and 49 deletions
+9 -3
View File
@@ -2196,9 +2196,15 @@
var/reply_to = locate(href_list["replyto"])
var/destination
var/notify
var/obj/item/paper/P = new /obj/item/paper(null) //hopefully the null loc won't cause trouble for us
var/obj/item/paper/P
var/use_letterheard = alert("Use letterhead? If so, do not add your own header or a footer. Type and format only your actual message.",,"Nanotrasen","Syndicate", "No")
switch(use_letterheard)
if("Nanotrasen")
P = new /obj/item/paper/central_command(null)
if("Syndicate")
P = new /obj/item/paper/syndicate(null)
if("No")
P = new /obj/item/paper(null)
if(!fax)
var/list/departmentoptions = GLOB.alldepartments + GLOB.hidden_departments + "All Departments"
destination = input(usr, "To which department?", "Choose a department", "") as null|anything in departmentoptions