lib/slack/smart-bot/commands/general/bye_bot.rb in slack-smart-bot-1.4.3 vs lib/slack/smart-bot/commands/general/bye_bot.rb in slack-smart-bot-1.5.0
- old
+ new
@@ -7,9 +7,10 @@
# help: Also apart of Bye you can use _Bæ, Good Bye, Adiós, Ciao, Bless, Bless Bless, Adeu_
# help: Bot stops listening to you
# help:
def bye_bot(dest, from, display_name)
if @status == :on
+ save_stats(__method__)
bye = ["Bye", "Bæ", "Good Bye", "Adiós", "Ciao", "Bless", "Bless bless", "Adeu"].sample
respond "#{bye} #{display_name}", dest
@listening.delete(from)
end
end