diff --git a/pictures/thyme.jpg b/pictures/thyme.jpg new file mode 100644 index 0000000..f83e5cd Binary files /dev/null and b/pictures/thyme.jpg differ diff --git a/plugins/special.lua b/plugins/special.lua index c12e309..86742d6 100644 --- a/plugins/special.lua +++ b/plugins/special.lua @@ -56,6 +56,8 @@ function run(msg, matches) send_photo(get_receiver(msg), "pictures/aha.png", ok_cb, false) elseif string.match(msg.text, "^~?[P|p][O||o][I|i]$") then send_photo(get_receiver(msg), "pictures/poi.jpg", ok_cb, false) + elseif string.match(msg.text, "^/[Tt][Hh][Yy][Mm][Ee]$") then + send_photo(get_receiver(msg), "pictures/thyme.jpg", ok_cb, false) end end @@ -84,7 +86,8 @@ return { "^/Balsamiko Essig$", "^[B|b][A|a][K|k][A|a] [B|b][O|o][T|t]$", "^[A|a][H|h][A|a].[P|p][N|n][G|g]$", - "^~?[P|p][O||o][I|i]$" + "^~?[P|p][O||o][I|i]$", + "^/[Tt][Hh][Yy][Mm][Ee]$" }, run = run }