small fixes
This commit is contained in:
parent
18fdd69a14
commit
a71c4f84f7
@ -37,8 +37,7 @@ module.exports = (robot) ->
|
||||
thank = ['prego :)', "non c'è di che", 'faccio solo il mio lavoro',
|
||||
'no problemo amigo', 'non fate complimenti ;)']
|
||||
|
||||
sender = (res) ->
|
||||
res.message.user.name.replace /_/g, ' '
|
||||
sender = (res) -> res.message.user.name
|
||||
|
||||
welcome = (res) ->
|
||||
current = robot.brain.get 'ringraziato'
|
||||
@ -112,10 +111,9 @@ module.exports = (robot) ->
|
||||
res.send "sto parlando in #{res.message.room}, #{sender res}"
|
||||
|
||||
robot.respond /ti amo/i, (res) ->
|
||||
res.send 'anche io ti amo ' + sender res
|
||||
res.send "anche io ti amo #{sender res}"
|
||||
|
||||
robot.respond /ti odio/i, (res) ->
|
||||
res.message.user.name = "Michele_Guerini_Rocco"
|
||||
res.send "ma cosa ti ho fatto di male #{sender res}? :("
|
||||
|
||||
robot.hear /(?:ehi|ciao|we|(?:bella(?: li)?)) (?:asjon|assa|assion(?:i|e))/i, (res) ->
|
||||
@ -123,5 +121,8 @@ module.exports = (robot) ->
|
||||
'dimmi', 'weeee', 'ehilà']
|
||||
res.send "#{res.random greet} #{sender res}"
|
||||
|
||||
robot.respond /(ci sei)?\?/i, (res) ->
|
||||
robot.respond /ci sei\?/i, (res) ->
|
||||
res.send res.random confirm
|
||||
|
||||
robot.hear /assa\?/, (res) ->
|
||||
res.send res.random confirm
|
||||
|
Loading…
Reference in New Issue
Block a user