-
Notifications
You must be signed in to change notification settings - Fork 294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add config option for Discord setActivity #423
base: main
Are you sure you want to change the base?
Conversation
@@ -90,6 +90,8 @@ First you need to create a Discord bot user, which you can do by following the i | |||
"irc": ["irc_nick1", "irc_nick2"], // Ignore specified IRC nicks and do not send their messages to Discord. | |||
"discord": ["discord_nick1", "discord_nick2"] // Ignore specified Discord nicks and do not send their messages to IRC. | |||
}, | |||
// Sets the discord activity status, can be set to one of "PLAYING, STREAMING, LISTENING or WATCHING" | |||
"discordStatus": ["PLAYING", "with you!"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it would be more self explantory if this was an object? E.g. something like:
"discordStatus": {
"name": ...,
"type": ...,
"url": ...
}
I can't tell what's going on between #423, #368 and #359. Are there any plans to change the PR further, and would you be able to add (basic) tests for the functionality? (Is there consensus on a specific implementation?) I don't care much about the rich presence system, so something that people agree works would be good. |
Another alternative to resolve issue #246
I chose to use the setActivity class as in my opinion, makes more sense for something like this.