From 9bb371e87565259897081513508c1e883bfc07de Mon Sep 17 00:00:00 2001 From: Piplup Date: Mon, 3 Feb 2025 01:55:44 +0000 Subject: [PATCH] Added Super Mario Odyssey --- src/Ryujinx/DiscordIntegrationModule.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Ryujinx/DiscordIntegrationModule.cs b/src/Ryujinx/DiscordIntegrationModule.cs index add46bda4..f41847faa 100644 --- a/src/Ryujinx/DiscordIntegrationModule.cs +++ b/src/Ryujinx/DiscordIntegrationModule.cs @@ -131,6 +131,11 @@ namespace Ryujinx.Ava "01007ef00011e000", gameSpec => gameSpec.AddValueFormatter("IsHardMode", val => val is 1 ? "Playing Master Mode" : "Playing Normal Mode") + ) + .AddSpec( // Super Mario Odyssey + "0100000000010000", + gameSpec => + gameSpec.AddValueFormatter("is_kids_mode", val => val is 1 ? "Playing in Assist Mode" : "Playing in Regular Mode") ); private static void HandlePlayReport(MessagePackObject playReport)