From 08dba620ca8263be668e9ac26c5603a0422363ab Mon Sep 17 00:00:00 2001 From: Piplup Date: Mon, 3 Feb 2025 01:56:08 +0000 Subject: [PATCH] Added Super Mario Odyssey (China) --- src/Ryujinx/DiscordIntegrationModule.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Ryujinx/DiscordIntegrationModule.cs b/src/Ryujinx/DiscordIntegrationModule.cs index f41847faa..246e6d1b2 100644 --- a/src/Ryujinx/DiscordIntegrationModule.cs +++ b/src/Ryujinx/DiscordIntegrationModule.cs @@ -136,6 +136,11 @@ namespace Ryujinx.Ava "0100000000010000", gameSpec => gameSpec.AddValueFormatter("is_kids_mode", val => val is 1 ? "Playing in Assist Mode" : "Playing in Regular Mode") + ) + .AddSpec( // Super Mario Odyssey (China) + "010075000ECBE000", + gameSpec => + gameSpec.AddValueFormatter("is_kids_mode", val => val is 1 ? "Playing in 帮助模式" : "Playing in 普通模式") ); private static void HandlePlayReport(MessagePackObject playReport)