added kappa to special.lua

This commit is contained in:
Akamaru 2015-08-10 15:17:35 +02:00
parent fd30578acd
commit a66ad8ea56
1 changed files with 11 additions and 1 deletions

View File

@ -60,6 +60,15 @@ function run(msg, matches)
send_photo(get_receiver(msg), "pictures/thyme.jpg", ok_cb, false)
elseif string.match(msg.text, "^[Yy][Oo][Ll][Oo]$") then
return 'Hä YOLO?'
elseif string.match(msg.text, "^/[Kk][Aa][Pp][Pp][Aa]$") then
return [[
]]
end
end
@ -90,7 +99,8 @@ return {
"^[A|a][H|h][A|a].[P|p][N|n][G|g]$",
"^~?[P|p][O||o][I|i]$",
"^/[Tt][Hh][Yy][Mm][Ee]$",
"^[Yy][Oo][Ll][Oo]$"
"^[Yy][Oo][Ll][Oo]$",
"^/[Kk][Aa][Pp][Pp][Aa]$"
},
run = run
}