Add !WARP

This commit is contained in:
SilicaAndPina 2021-02-19 11:54:33 +13:00
parent 0222475f09
commit b4c4a6c137
6 changed files with 90 additions and 3 deletions

View file

@ -102,6 +102,9 @@ namespace HISP.Game.Chat
else if (message.StartsWith("!MUTE"))
return Command.Mute(message, args, user);
else if (message.StartsWith("!WARP"))
return Command.Warp(message, args, user);
}
return false;
}