Handle females as well

This commit is contained in:
rnhmjoj 2015-10-31 12:41:41 +01:00
parent eae21a4981
commit 1c38dcd8c9

View File

@ -155,7 +155,7 @@ module.exports = (robot) ->
else else
res.send "fatto!" res.send "fatto!"
robot.respond /banna(lo| (.+))/, (res) -> robot.respond /banna(l(o|a)| (.+))/, (res) ->
ok = [', ora non sarai più un problema', ' terminato', ok = [', ora non sarai più un problema', ' terminato',
' non farti più vedere', ', questa è la tua fine' ' non farti più vedere', ', questa è la tua fine'
unk = ['non so chi sia', 'chi?', 'mai sentito', 'sicuro? non lo trovo'] unk = ['non so chi sia', 'chi?', 'mai sentito', 'sicuro? non lo trovo']
@ -199,7 +199,7 @@ module.exports = (robot) ->
chat_info res.message.room, (chat) -> chat_info res.message.room, (chat) ->
get_history chat.name, 2, (history) -> get_history chat.name, 2, (history) ->
robot_info (self) -> robot_info (self) ->
name = resolve_name(res.match[2], chat, history) name = resolve_name(res.match[3], chat, history)
if not name? if not name?
return res.send res.random unk return res.send res.random unk