Skip to content

Commit

Permalink
Add Judia & Memoria to OSC
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisFeline committed Oct 19, 2024
1 parent 0297ed3 commit e28a9da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 4 additions & 3 deletions Docs/OSC/OSC_Items.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!!!
| `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)
6 changes: 2 additions & 4 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ internal static class Program
internal static readonly string LegacyDataLocation = Path.Combine(LogWatcher<ToNLogContext>.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;
Expand Down

0 comments on commit e28a9da

Please sign in to comment.