updated readme, changed some things

This commit is contained in:
topkecleon
2015-12-04 09:56:48 -05:00
parent 4bd0a72b5a
commit c5c3660de4
5 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ local action = function(msg)
sendMessage(msg.chat.id, message)
return
elseif string.match(msg.text_lower, '^/about[@'..bot.username..']*') then
sendReply(msg, message)
sendMessage(msg.chat.id, message)
return
end

View File

@@ -12,7 +12,7 @@ local action = function(msg)
local input = msg.text:input()
if input then
sendReply(msg, latcyr(input))
sendMessage(msg.chat.id, latcyr(input))
else
sendReply(msg, doc)
end

View File

@@ -47,7 +47,7 @@ local action = function(msg)
local message
if msg.text:match('y/n%p?$') then
if msg.text_lower:match('y/n%p?$') then
message = yesno_answers[math.random(#yesno_answers)]
else
message = ball_answers[math.random(#ball_answers)]