From ec6a910051735f9cf11ab512ebf5a768bef68c45 Mon Sep 17 00:00:00 2001 From: Piplup Date: Mon, 3 Feb 2025 01:56:32 +0000 Subject: [PATCH] Added Super Mario 3D World + Bowser's Fury --- src/Ryujinx/DiscordIntegrationModule.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Ryujinx/DiscordIntegrationModule.cs b/src/Ryujinx/DiscordIntegrationModule.cs index 246e6d1b2..a6d4c9520 100644 --- a/src/Ryujinx/DiscordIntegrationModule.cs +++ b/src/Ryujinx/DiscordIntegrationModule.cs @@ -141,6 +141,11 @@ namespace Ryujinx.Ava "010075000ECBE000", gameSpec => gameSpec.AddValueFormatter("is_kids_mode", val => val is 1 ? "Playing in 帮助模式" : "Playing in 普通模式") + ) + .AddSpec( // Super Mario 3D World + Bowser's Fury + "010028600EBDA000", + gameSpec => + gameSpec.AddValueFormatter("mode", val => val is 0 ? "Playing Super Mario 3D World" : "Playing Bowser's Fury") ); private static void HandlePlayReport(MessagePackObject playReport)