From 4c2928a2bba486ad0334ab04e1b93260452213c9 Mon Sep 17 00:00:00 2001 From: Bm0n <92271472+Bm0n@users.noreply.github.com> Date: Wed, 4 Jun 2025 08:51:55 -0400 Subject: [PATCH] Makes ban notes public (#28946) * first commit * Update code/modules/admin/topic.dm Co-authored-by: Paul <90473506+pwbokie@users.noreply.github.com> Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> --------- Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> Co-authored-by: Bmon Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Co-authored-by: Paul <90473506+pwbokie@users.noreply.github.com> --- code/modules/admin/topic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 2742e36dd7d..8c6163c5443 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -787,7 +787,7 @@ msg = job else msg += ", [job]" - add_note(M.last_known_ckey, "Banned from [msg] - [reason]", null, usr.ckey, 0) + add_note(M.last_known_ckey, "Banned from [msg] - [reason]", null, usr.ckey, 0, public = TRUE) message_admins("[key_name_admin(usr)] banned [key_name_admin(M)] from [msg] for [mins] minutes", 1) // Reload their job ban holder (refresh this round) @@ -810,7 +810,7 @@ msg = job else msg += ", [job]" - add_note(M.last_known_ckey, "Banned from [msg] - [reason]", null, usr.ckey, 0) + add_note(M.last_known_ckey, "Banned from [msg] - [reason]", null, usr.ckey, 0, public = TRUE) message_admins("[key_name_admin(usr)] banned [key_name_admin(M)] from [msg]", 1) // Reload their job ban holder (refresh this round)