From 5d9c816cc6f014ba5a6649c4c94a9b6bbaba4dea Mon Sep 17 00:00:00 2001 From: RuiNtD Date: Mon, 25 Mar 2024 16:36:23 -0600 Subject: [PATCH] Hotfix for tag list not working It worked in DEBUG... --- RichPresenceMod.cs | 2 +- manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RichPresenceMod.cs b/RichPresenceMod.cs index 85e8b78..3b40e4b 100644 --- a/RichPresenceMod.cs +++ b/RichPresenceMod.cs @@ -208,7 +208,7 @@ private string FormatTags( var tags = api.ResolveAllTags(); nulls = 0; - Dictionary> groups = new(); + Dictionary> groups = new() { [""] = new() }; foreach (var tag in tags) { string owner = api.GetTagOwner(tag.Key) ?? ""; diff --git a/manifest.json b/manifest.json index 950ade8..618adda 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "Name": "Rich Presence", "Author": "RuiNtD", - "Version": "3.0.0", + "Version": "3.0.1", "Description": "Shows your in-game state on your Discord profile.", "UniqueID": "RuiNtD.RichPresence", "EntryDll": "SVRichPresence.dll",