mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-04 02:06:50 +00:00
code cleanup 4
This commit is contained in:
@@ -3,11 +3,11 @@
|
||||
|
||||
void bot_command_pet(Client *c, const Seperator *sep)
|
||||
{
|
||||
|
||||
std::list<const char*> subcommand_list;
|
||||
subcommand_list.push_back("petgetlost");
|
||||
subcommand_list.push_back("petremove");
|
||||
subcommand_list.push_back("petsettype");
|
||||
std::vector<const char*> subcommand_list = {
|
||||
"petgetlost",
|
||||
"petremove",
|
||||
"petsettype"
|
||||
};
|
||||
|
||||
if (helper_command_alias_fail(c, "bot_command_pet", sep->arg[0], "pet"))
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user