risolto che la nuova funzione fosse case sensitive

This commit is contained in:
Enrico Fasoli 2015-04-24 19:52:42 +02:00
parent c2569b8bf4
commit b695b7f89b

View File

@ -38,7 +38,7 @@ module.exports = (robot) ->
res.send 'sto parlando in '+res.message.room+', '+res.message.user.name
robot.respond /ti amo/i, (res) ->
res.send 'anche io ti amo '+(res.message.user.name+' ' or '')+'<3'
robot.hear /(?:ehi|ciao|(?:bella(?: li)?)) (?:asjon|assa|assion(?:i|e))(?:!)?/, (res) ->
robot.hear /(?:ehi|ciao|(?:bella(?: li)?)) (?:asjon|assa|assion(?:i|e))(?:!)?/i, (res) ->
console.log res.match
saluti = ['ciao', 'bella', 'è arrivato', 'eccolooo', 'dimmi']
res.send res.random(saluti)+' '+res.message.user.name+'!'