From c33d100cbd2c8fe2d5964ba13caff8d0aa17d42b Mon Sep 17 00:00:00 2001 From: Shawn Hind <> Date: Fri, 22 Oct 2021 21:30:56 -0400 Subject: [PATCH 1/3] add a notification when replying to fax --- code/modules/admin/topic.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 94b10cf04a7..4582ecba9db 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -2483,6 +2483,11 @@ var/destination var/notify var/obj/item/paper/P + + if(sender) + log_admin("[key_name(src.owner)] has started replying to a fax message from [key_name(sender)]") + message_admins("[key_name_admin(src.owner)] has started replying to a fax message from [key_name_admin(sender)]") + 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") From 97edcd4e6e2ca9ce1a76ec0232b77b37a04bdd2e Mon Sep 17 00:00:00 2001 From: rythenx <90358236+rythenx@users.noreply.github.com> Date: Sat, 23 Oct 2021 10:54:48 -0400 Subject: [PATCH 2/3] Update code/modules/admin/topic.dm Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> --- code/modules/admin/topic.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 4582ecba9db..7be5a112898 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -2485,7 +2485,6 @@ var/obj/item/paper/P if(sender) - log_admin("[key_name(src.owner)] has started replying to a fax message from [key_name(sender)]") message_admins("[key_name_admin(src.owner)] has started replying to a fax message from [key_name_admin(sender)]") 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") From 25a333274dac9c675193889bdd59d97850c78574 Mon Sep 17 00:00:00 2001 From: rythenx <90358236+rythenx@users.noreply.github.com> Date: Sat, 23 Oct 2021 11:53:08 -0400 Subject: [PATCH 3/3] Update code/modules/admin/topic.dm Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> --- code/modules/admin/topic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 7be5a112898..bc6e656fe9d 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -2485,7 +2485,7 @@ var/obj/item/paper/P if(sender) - message_admins("[key_name_admin(src.owner)] has started replying to a fax message from [key_name_admin(sender)]") + message_admins("[key_name_admin(owner)] has started replying to a fax message from [key_name_admin(sender)]") 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)