cancellare la memoria ora possibile
This commit is contained in:
parent
b0677249d6
commit
c78f37dcbf
@ -8,6 +8,13 @@ module.exports = (robot) ->
|
||||
res.send 'non sapevo che '+name+' fosse '+definition+'. Me lo ricorderò'
|
||||
mem[name] = definition
|
||||
robot.brain.set 'memoria', mem
|
||||
robot.respond /dimentica(?:ti)? (.+)/i, (res) ->
|
||||
mem = robot.brain.get('memoria') or {}
|
||||
if mem[res.match[1]]?
|
||||
res.send 'cancellazione neuronale in corso...'
|
||||
delete mem[res.match[1]]
|
||||
robot.brain.set 'memoria', mem # necessary?
|
||||
else res.send 'non so cosa sia'
|
||||
robot.respond /(?:che )?cos(?:\')?è (.+)/i, (res) ->
|
||||
mem = robot.brain.get('memoria') or {}
|
||||
if mem[res.match[1]]
|
||||
|
Loading…
Reference in New Issue
Block a user