Scripts/Commands: Fix ".help" command to show commands in alphabetical order

(cherry picked from commit 841ce54a0dbc4b76ab0068ff08732a068f39f570)
This commit is contained in:
jackpoz
2016-01-20 21:29:21 +01:00
committed by Carbenium
parent e7f7ffa73f
commit 36ed04bc6b
+6
View File
@@ -1045,6 +1045,12 @@ std::vector<ChatCommand> ScriptMgr::GetChatCommands()
table.insert(table.end(), cmds.begin(), cmds.end());
}
// Sort commands in alphabetical order
std::sort(table.begin(), table.end(), [](const ChatCommand& a, const ChatCommand&b)
{
return strcmp(a.Name, b.Name) < 0;
});
return table;
}