string.lower

This commit is contained in:
Akamaru 2015-05-23 17:51:24 +02:00
parent 759a54a93b
commit 4087099c47

View File

@ -17,7 +17,8 @@ local function get_pokemon(query)
end
local function run(msg, matches)
return get_pokemon(matches[1])
local name = string.lower(matches[1])
return get_pokemon(name)
end
return {