ldilley / discobot

:speech_balloon: A Discord bot written in Ruby
GNU General Public License v3.0
3 stars 0 forks source link

Events are duplicated during reload #17

Closed ldilley closed 5 years ago

ldilley commented 5 years ago

Events are not removed while reloading plugins which add an event like the example below. The result is that the message is printed as many times as reload was used.

bot.member_join do |event|
  event.server.general_channel.send_message "Welcome, #{event.user.mention}."
end