diff options
author | Francesco Borzì <borzifrancesco@gmail.com> | 2021-10-11 12:41:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 12:41:00 +0200 |
commit | 060cd00bb73e957314859b500721981ce33912f7 (patch) | |
tree | af1d4bd5ec40d71c2b4f24c25db69b9c56d85979 | |
parent | a6a85c0d5d0a43abf0915e112b83b747a9f884de (diff) |
chore(Core): add Prefix to Command menu
Co-authored-by: banehammer <felixwuensch@outlook.com>
Co-authored-by: banehammer <87540548+banehammer@users.noreply.github.com>
-rw-r--r-- | src/server/game/Chat/Chat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Chat/Chat.cpp b/src/server/game/Chat/Chat.cpp index 250c438268..8f03dbc5ea 100644 --- a/src/server/game/Chat/Chat.cpp +++ b/src/server/game/Chat/Chat.cpp @@ -528,9 +528,9 @@ bool ChatHandler::ShowHelpForSubCommands(std::vector<ChatCommand> const& table, continue; if (m_session) - list += "\n "; + list += "\n |- "; else - list += "\n\r "; + list += "\n\r |- "; list += table[i].Name; |