From 1ae6911d357d1c92ab5ed13c83662e866ebed54d Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sat, 16 May 2020 16:33:28 -0400 Subject: [PATCH] Remove stray space in chat command --- code/modules/tgs/v5/chat_commands.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/tgs/v5/chat_commands.dm b/code/modules/tgs/v5/chat_commands.dm index 441c68d2db..855b6766f4 100644 --- a/code/modules/tgs/v5/chat_commands.dm +++ b/code/modules/tgs/v5/chat_commands.dm @@ -60,5 +60,5 @@ var/dev_msg = english_list(dev_keys, "-None-") var/other_msg = english_list(other_keys, "-None-") - message += "**Admins:** [admin_msg]\n**Mods/GMs:** [mod_msg]\n **Devs:** [dev_msg]\n**Other:** [other_msg]\n**Total:** [count] online" + message += "**Admins:** [admin_msg]\n**Mods/GMs:** [mod_msg]\n**Devs:** [dev_msg]\n**Other:** [other_msg]\n**Total:** [count] online" return message \ No newline at end of file