diff --git a/src/game/Chat.cpp b/src/game/Chat.cpp index d0cdfc25c..625788f8a 100644 --- a/src/game/Chat.cpp +++ b/src/game/Chat.cpp @@ -787,7 +787,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 += " ..."; }