From: terencehill Date: Thu, 2 Mar 2017 21:28:21 +0000 (+0100) Subject: Remove empty lines from common networked command list X-Git-Tag: xonotic-v0.8.2~157 X-Git-Url: https://git.xonotic.org/?a=commitdiff_plain;h=a0953de58b348ee99e78b116fad66104409081e1;p=xonotic%2Fxonotic-data.pk3dir.git Remove empty lines from common networked command list --- diff --git a/qcsrc/server/command/common.qh b/qcsrc/server/command/common.qh index 978a92b14..27dd13a2d 100644 --- a/qcsrc/server/command/common.qh +++ b/qcsrc/server/command/common.qh @@ -157,7 +157,7 @@ COMMON_COMMAND(who, "Display detailed client information about all players") { C void CommonCommand_macro_help(entity caller) { - FOREACH(COMMON_COMMANDS, true, LAMBDA(print_to(caller, sprintf(" ^2%s^7: %s\n", it.m_name, it.m_description)))); + FOREACH(COMMON_COMMANDS, true, LAMBDA(print_to(caller, sprintf(" ^2%s^7: %s", it.m_name, it.m_description)))); } float CommonCommand_macro_command(float argc, entity caller, string command)