rsstime.value = int(m.group(1))
- elif command == 'treat' or command == 'stroke':
+ elif command in ['treat', 'stroke', 'fuss']:
# treat
- for response in ['om nom nom', '^-^', 'meow!', 'lick']:
+ if command == 'treat':
+ responses = ['om nom nom', '^-^', 'meow!', 'lick']
+ else:
+ responses = ['nuzzle', '^-^', 'meow!', 'mrrp']
+ for response in responses:
said = yield from maybe_say(message.channel, response)
if said:
yield from maybe_play_sound(voice_channel_for_channel(message.channel), 'purr.wav', join = False)
'any': {
'fn': do_commands,
'args': [True],
- 'commands': ['bling', 'stroke', 'treat']
+ 'commands': ['bling', 'fuss', 'stroke', 'treat']
},
'edi': {
'fn': do_edi,