diff options
Diffstat (limited to 'src/game/Chat.cpp')
-rw-r--r-- | src/game/Chat.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/game/Chat.cpp b/src/game/Chat.cpp index 67c79642631..0b1bf2e60b6 100644 --- a/src/game/Chat.cpp +++ b/src/game/Chat.cpp @@ -795,7 +795,13 @@ bool ChatHandler::ShowHelpForSubCommands(ChatCommand *table, char const* cmd, ch if( *subcmd && !hasStringAbbr(table[i].Name, subcmd)) continue; - (list += "\n ") += table[i].Name; + if(m_session) + list += "\n "; + else + list += "\n\r "; + + list += table[i].Name; + if(table[i].ChildCommands) list += " ..."; } |