For some reason, the update service triggers on a reconnect thus causing a duplicate “I’ve been updated” embed as seen in the attached....
Add a variable bool which is set to true once an update has been announced, then surround the update embed trigger event to say if (UpdateServiceAlreadyPostedEmbed == false) { //post embed in channels }
Hopefully fixed; introduced a DuplicationPreventationService measure, which should prevent the notification from firing more than once if the bot needs to reconnect etc...
For some reason, the update service triggers on a reconnect thus causing a duplicate “I’ve been updated” embed as seen in the attached....
Add a variable bool which is set to true once an update has been announced, then surround the update embed trigger event to say
if (UpdateServiceAlreadyPostedEmbed == false) { //post embed in channels }