Fix command .skirmish (#12149)
fix-issue-11966 Co-authored-by: Badanin Roman <r.badanin@etud.univ-pau.fr>
This commit is contained in:
parent
6bff66a9f6
commit
5e509344ac
1 changed files with 2 additions and 2 deletions
|
|
@ -143,9 +143,9 @@ public:
|
|||
return commandTable;
|
||||
}
|
||||
|
||||
static bool HandleSkirmishCommand(ChatHandler* handler, std::string_view args)
|
||||
static bool HandleSkirmishCommand(ChatHandler* handler, std::vector<std::string_view> args)
|
||||
{
|
||||
auto tokens = Acore::Tokenize(args, ' ', true);
|
||||
auto tokens = args;
|
||||
|
||||
if (args.empty() || !tokens.size())
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue