Remove useless logging
This commit is contained in:
parent
39273b53bb
commit
e984d4da56
@ -40,7 +40,6 @@ module.exports = (robot) ->
|
|||||||
res.send res.random(exp1)+' '+name
|
res.send res.random(exp1)+' '+name
|
||||||
# Salvo chi ha internato
|
# Salvo chi ha internato
|
||||||
mem[name] = { da: res.message.user }
|
mem[name] = { da: res.message.user }
|
||||||
console.log res.message.user, mem[name]
|
|
||||||
robot.brain.set 'internati', mem
|
robot.brain.set 'internati', mem
|
||||||
|
|
||||||
robot.respond /libera (.+)/i, (res) ->
|
robot.respond /libera (.+)/i, (res) ->
|
||||||
|
@ -69,7 +69,6 @@ module.exports = (robot) ->
|
|||||||
.get() (err, r, body) ->
|
.get() (err, r, body) ->
|
||||||
res.send 'dovrei essere a ' + body
|
res.send 'dovrei essere a ' + body
|
||||||
robot.respond /con chi stai parlando/i, (res) ->
|
robot.respond /con chi stai parlando/i, (res) ->
|
||||||
console.log res.message.user, res.message.room
|
|
||||||
if res.message.user.name is res.message.room
|
if res.message.user.name is res.message.room
|
||||||
res.send 'sto parlando con te, '+res.message.user.name
|
res.send 'sto parlando con te, '+res.message.user.name
|
||||||
else
|
else
|
||||||
@ -79,7 +78,6 @@ module.exports = (robot) ->
|
|||||||
robot.respond /ti odio/i, (res) ->
|
robot.respond /ti odio/i, (res) ->
|
||||||
res.send 'ma cosa ti ho fatto di male '+(res.message.user.name or '')+'? :('
|
res.send 'ma cosa ti ho fatto di male '+(res.message.user.name or '')+'? :('
|
||||||
robot.hear /(?:ehi|ciao|we|(?:bella(?: li)?)) (?:asjon|assa|assion(?:i|e))/i, (res) ->
|
robot.hear /(?:ehi|ciao|we|(?:bella(?: li)?)) (?:asjon|assa|assion(?:i|e))/i, (res) ->
|
||||||
console.log res.match
|
|
||||||
saluti = ['ciao', 'bella', 'è arrivato', 'eccolooo', 'dimmi', 'weeee', 'ehilà']
|
saluti = ['ciao', 'bella', 'è arrivato', 'eccolooo', 'dimmi', 'weeee', 'ehilà']
|
||||||
res.send res.random(saluti)+' '+res.message.user.name+'!'
|
res.send res.random(saluti)+' '+res.message.user.name+'!'
|
||||||
robot.respond /secret-kill-code/i, (res) -> process.exit 0
|
robot.respond /secret-kill-code/i, (res) -> process.exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user