changed grass poke icon, fixed typelist

This commit is contained in:
Master Kwoth 2016-05-28 16:34:31 +02:00
parent 9a2421e867
commit 88c589c653
2 changed files with 2 additions and 2 deletions

View File

@ -292,7 +292,7 @@ namespace NadekoBot.Modules.Pokemon
var targetType = stringToPokemonType(targetTypeStr); var targetType = stringToPokemonType(targetTypeStr);
if (targetType == null) if (targetType == null)
{ {
await e.Channel.SendMessage("Invalid type specified. Type must be one of:\nNORMAL, FIRE, WATER, ELECTRIC, GRASS, ICE, FIGHTING, POISON, GROUND, FLYING, PSYCHIC, BUG, ROCK, GHOST, DRAGON, DARK, STEEL").ConfigureAwait(false); await e.Channel.SendMessage("Invalid type specified. Type must be one of:\n" + string.Join(", ", NadekoBot.Config.PokemonTypes.Select(t => t.Name.ToUpperInvariant()))).ConfigureAwait(false);
return; return;
} }
if (targetType == GetPokeType(e.User.Id)) if (targetType == GetPokeType(e.User.Id))

View File

@ -189,7 +189,7 @@
"vine whip", "vine whip",
"razor leaf" "razor leaf"
], ],
"Icon": "🌿" "Icon": "🍃"
}, },
{ {
"Name": "ICE", "Name": "ICE",