Fixes most commands.

This commit is contained in:
hondacrx
2022-06-11 21:09:48 -04:00
parent 130444d893
commit e0025794a5
31 changed files with 1275 additions and 928 deletions
+2 -2
View File
@@ -173,7 +173,7 @@ namespace Game
if (string.IsNullOrEmpty(msg))
return;
if (new CommandHandler(this).ParseCommand(msg))
if (new CommandHandler(this).ParseCommands(msg))
return;
switch (type)
@@ -398,7 +398,7 @@ namespace Game
if (!WorldConfig.GetBoolValue(WorldCfg.AddonChannel))
return;
if (prefix == AddonChannelCommandHandler.PREFIX && new AddonChannelCommandHandler(this).ParseCommand(text))
if (prefix == AddonChannelCommandHandler.PREFIX && new AddonChannelCommandHandler(this).ParseCommands(text))
return;
switch (type)