From fa09fc3a5d70e490c2ab368ec5661b814fab3a43 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Fri, 10 Sep 2021 23:24:23 +0100 Subject: [PATCH] oh, tidy up these brackets too --- 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 f3804f86c50..debb6984aa6 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -982,7 +982,7 @@ else if(href_list["removenote"]) var/note_id = href_list["removenote"] - if((alert("Do you really want to delete this note?","Note deletion confirmation", "Yes", "No") == "Yes")) + if(alert("Do you really want to delete this note?","Note deletion confirmation", "Yes", "No") == "Yes") remove_note(note_id) else if(href_list["editnote"])