Fix activity changing idk

This commit is contained in:
nolan 2021-06-17 22:56:41 -07:00
parent 39270078ea
commit b364d4a886

View File

@ -54,7 +54,9 @@ class DiscordClient extends Client {
this.once('ready', () => {
this._setActivity();
this.setInterval(this._setActivity, 1800000); // I think this is 30 minutes. I could be wrong.
setInterval(() => {
this._setActivity();
}, 1800000); // I think this is 30 minutes. I could be wrong.
});
}