._.
This commit is contained in:
Akamaru 2015-12-03 20:39:27 +01:00
parent a68a8cae18
commit a488c54dec
1 changed files with 5 additions and 1 deletions

View File

@ -113,6 +113,9 @@ function run(msg, matches)
elseif string.match(msg.text, "[Pp][Ee]") then elseif string.match(msg.text, "[Pp][Ee]") then
return 'nis' return 'nis'
elseif string.match(msg.text, "[Vv][Aa]") then
return 'gina'
end end
end end
@ -149,7 +152,8 @@ return {
--"[Ff][Gg][Tt]", --"[Ff][Gg][Tt]",
"^/[Kk][Ii][Ll][Ll] (.*)", "^/[Kk][Ii][Ll][Ll] (.*)",
"^[Ii][Nn][Ll][Oo][Vv][Ee]$", "^[Ii][Nn][Ll][Oo][Vv][Ee]$",
"^[Pp][Ee]$" "^[Pp][Ee]$",
"^[Vv][Aa]$"
}, },
run = run run = run
} }