From 8484ace0099253f0604ea8c19ccf247ea3441665 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Sat, 16 Dec 2023 10:10:25 -0500 Subject: [PATCH] Restore sm64coopdx Discord application ID --- src/pc/discord/discord.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pc/discord/discord.c b/src/pc/discord/discord.c index 10b93520..d5fc68e3 100644 --- a/src/pc/discord/discord.c +++ b/src/pc/discord/discord.c @@ -124,8 +124,7 @@ static void discord_initialize(void) { // set up discord params struct DiscordCreateParams params = { 0 }; DiscordCreateParamsSetDefault(¶ms); - // params.client_id = gCoopCompatibility ? APPLICATION_ID_COOP : APPLICATION_ID_COOPDX; // you have to have activity status on if you don't want discord to prompt you to authorize on every boot - params.client_id = APPLICATION_ID_COOP; // hide sm64coopdx for now + params.client_id = gCoopCompatibility ? APPLICATION_ID_COOP : APPLICATION_ID_COOPDX; // you have to have activity status on if you don't want discord to prompt you to authorize on every boot params.flags = DiscordCreateFlags_NoRequireDiscord; params.event_data = &app; params.user_events = discord_user_initialize();