From e28a9da09f8546ee069cb29dbf994ec9006bd7de Mon Sep 17 00:00:00 2001 From: Kittenji <41535779+ChrisFeline@users.noreply.github.com> Date: Sat, 19 Oct 2024 03:44:25 -0400 Subject: [PATCH] Add Judia & Memoria to OSC --- Docs/OSC/OSC_Items.md | 7 ++++--- Program.cs | 6 ++---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Docs/OSC/OSC_Items.md b/Docs/OSC/OSC_Items.md index 9a0fdd4..99c2070 100644 --- a/Docs/OSC/OSC_Items.md +++ b/Docs/OSC/OSC_Items.md @@ -89,9 +89,10 @@ | ID | Item | | - | - | | `71` | Wave Coil -| `72` | Shape +| `72` | Shape & ??? | `73` | Overseer Plush | `74` | Darkheart | `75` | Knife (SABOTAGE) -| `76` | + Mara -| `77` | + Wispy WISPYYY!!! \ No newline at end of file +| `76` | [Carrot (Mara)](https://terror.moe/items/carrot) +| `77` | [Wispy WISPYYY!!!](https://terror.moe/items/wispy_plush) +| `79` | [Judia (Nicomal)](https://terror.moe/items/judia) & [Memoria (亀⁄bakame)](https://terror.moe/items/memoria) \ No newline at end of file diff --git a/Program.cs b/Program.cs index 29f765f..880036b 100644 --- a/Program.cs +++ b/Program.cs @@ -25,10 +25,8 @@ internal static class Program internal static readonly string LegacyDataLocation = Path.Combine(LogWatcher.GetVRChatDataLocation(), ProgramName); internal static Mutex? AppMutex = new Mutex(true, ProgramName); - internal static void ReleaseMutex() - { - if (AppMutex != null) - { + internal static void ReleaseMutex() { + if (AppMutex != null) { AppMutex.ReleaseMutex(); AppMutex.Dispose(); AppMutex = null;