Fix animal alias

This commit is contained in:
Michał Gdula 2025-05-25 16:00:27 +01:00
parent efcba1f555
commit 73431bccd4

View file

@ -83,7 +83,7 @@ var animalAliases = map[string]string{
func RegisterTinyfoxCommands(bot *handler.Bot) {
bot.RegisterCommand("animal", registerAnimal(bot))
bot.RegisterCommandAlias("bot", "animal")
bot.RegisterCommandAlias("a", "animal")
}
func registerAnimal(bot *handler.Bot) handler.Callback {