diff --git a/CustomInteractions.Prepatch/Prepatch.cs b/CustomInteractions.Prepatch/Prepatch.cs
index a45086f..385a8f6 100644
--- a/CustomInteractions.Prepatch/Prepatch.cs
+++ b/CustomInteractions.Prepatch/Prepatch.cs
@@ -10,7 +10,7 @@ namespace IcyClawz.CustomInteractions
public static void Patch(ref AssemblyDefinition assembly)
{
- var type = assembly.MainModule.GetType("GClass2815"); // DynamicInteraction
+ var type = assembly.MainModule.GetType("GClass2816"); // DynamicInteraction
if (type != null)
{
type.IsSealed = false;
diff --git a/CustomInteractions.Prepatch/Prepatch.csproj b/CustomInteractions.Prepatch/Prepatch.csproj
index 1b44829..d93930c 100644
--- a/CustomInteractions.Prepatch/Prepatch.csproj
+++ b/CustomInteractions.Prepatch/Prepatch.csproj
@@ -3,7 +3,7 @@
net472
IcyClawz.CustomInteractions.Prepatch
- 1.3.0
+ 1.3.1
IcyClawz.CustomInteractions
diff --git a/CustomInteractions/CustomInteractions.cs b/CustomInteractions/CustomInteractions.cs
index bcba7b7..f2e26ca 100644
--- a/CustomInteractions/CustomInteractions.cs
+++ b/CustomInteractions/CustomInteractions.cs
@@ -8,8 +8,8 @@ using System.Linq;
using System.Reflection;
using UnityEngine;
-using DynamicInteraction = GClass2815;
-using EmptyInteractions = GClass2816;
+using DynamicInteraction = GClass2816;
+using EmptyInteractions = GClass2817;
namespace IcyClawz.CustomInteractions
{
@@ -110,14 +110,14 @@ namespace IcyClawz.CustomInteractions
internal static class AbstractInteractionsExtensions
{
- private static Dictionary GetDynamicInteractions(this GClass2816 instance) where T : Enum =>
- typeof(GClass2816).GetField("dictionary_1", BindingFlags.NonPublic | BindingFlags.Instance)
+ private static Dictionary GetDynamicInteractions(this GClass2817 instance) where T : Enum =>
+ typeof(GClass2817).GetField("dictionary_1", BindingFlags.NonPublic | BindingFlags.Instance)
.GetValue(instance) as Dictionary;
- public static void AddCustomInteraction(this GClass2816 instance, CustomInteraction customInteraction) where T : Enum =>
+ public static void AddCustomInteraction(this GClass2817 instance, CustomInteraction customInteraction) where T : Enum =>
instance.GetDynamicInteractions()[customInteraction.Impl.Key] = customInteraction.Impl;
- public static void RemoveCustomInteraction(this GClass2816 instance, CustomInteraction customInteraction) where T : Enum =>
+ public static void RemoveCustomInteraction(this GClass2817 instance, CustomInteraction customInteraction) where T : Enum =>
instance.GetDynamicInteractions().Remove(customInteraction.Impl.Key);
}
diff --git a/CustomInteractions/CustomInteractions.csproj b/CustomInteractions/CustomInteractions.csproj
index d2d2b71..8e0c81d 100644
--- a/CustomInteractions/CustomInteractions.csproj
+++ b/CustomInteractions/CustomInteractions.csproj
@@ -3,7 +3,7 @@
net472
IcyClawz.CustomInteractions
- 1.3.0
+ 1.3.1
IcyClawz.CustomInteractions
diff --git a/CustomInteractions/Plugin.cs b/CustomInteractions/Plugin.cs
index 4a1e18a..1a8d95f 100644
--- a/CustomInteractions/Plugin.cs
+++ b/CustomInteractions/Plugin.cs
@@ -4,13 +4,13 @@ using EFT.UI;
using System.Linq;
using System.Reflection;
-using DynamicInteraction = GClass2815;
-using ItemContext = GClass2622;
-using ItemInfoInteractions = GClass2816;
+using DynamicInteraction = GClass2816;
+using ItemContext = GClass2623;
+using ItemInfoInteractions = GClass2817;
namespace IcyClawz.CustomInteractions
{
- [BepInPlugin("com.IcyClawz.CustomInteractions", "IcyClawz.CustomInteractions", "1.3.0")]
+ [BepInPlugin("com.IcyClawz.CustomInteractions", "IcyClawz.CustomInteractions", "1.3.1")]
public class Plugin : BaseUnityPlugin
{
private void Awake()
diff --git a/ItemContextMenuExt/ItemContextMenuExt.cs b/ItemContextMenuExt/ItemContextMenuExt.cs
index 569209d..5f9cd8f 100644
--- a/ItemContextMenuExt/ItemContextMenuExt.cs
+++ b/ItemContextMenuExt/ItemContextMenuExt.cs
@@ -10,7 +10,7 @@ using UnityEngine;
using ILightTemplate = GInterface246;
using LightsState = GStruct155;
-using ResourceCache = GClass1976;
+using ResourceCache = GClass1977;
namespace IcyClawz.ItemContextMenuExt
{
diff --git a/ItemContextMenuExt/ItemContextMenuExt.csproj b/ItemContextMenuExt/ItemContextMenuExt.csproj
index 156d7f7..c11309d 100644
--- a/ItemContextMenuExt/ItemContextMenuExt.csproj
+++ b/ItemContextMenuExt/ItemContextMenuExt.csproj
@@ -3,7 +3,7 @@
net472
IcyClawz.ItemContextMenuExt
- 1.2.0
+ 1.2.1
IcyClawz.ItemContextMenuExt
diff --git a/ItemContextMenuExt/Plugin.cs b/ItemContextMenuExt/Plugin.cs
index 82e99b2..8aef43d 100644
--- a/ItemContextMenuExt/Plugin.cs
+++ b/ItemContextMenuExt/Plugin.cs
@@ -3,7 +3,7 @@ using IcyClawz.CustomInteractions;
namespace IcyClawz.ItemContextMenuExt
{
- [BepInPlugin("com.IcyClawz.ItemContextMenuExt", "IcyClawz.ItemContextMenuExt", "1.2.0")]
+ [BepInPlugin("com.IcyClawz.ItemContextMenuExt", "IcyClawz.ItemContextMenuExt", "1.2.1")]
public class Plugin : BaseUnityPlugin
{
private void Awake()
diff --git a/ItemSellPrice/ItemSellPrice.cs b/ItemSellPrice/ItemSellPrice.cs
index dc55ac7..674497e 100644
--- a/ItemSellPrice/ItemSellPrice.cs
+++ b/ItemSellPrice/ItemSellPrice.cs
@@ -8,7 +8,7 @@ using System.Linq;
using System.Reflection;
using UnityEngine;
-using CurrencyUtil = GClass2333;
+using CurrencyUtil = GClass2334;
namespace IcyClawz.ItemSellPrice
{
diff --git a/ItemSellPrice/ItemSellPrice.csproj b/ItemSellPrice/ItemSellPrice.csproj
index 2227cfc..4d8fd8f 100644
--- a/ItemSellPrice/ItemSellPrice.csproj
+++ b/ItemSellPrice/ItemSellPrice.csproj
@@ -3,7 +3,7 @@
net472
IcyClawz.ItemSellPrice
- 1.2.0
+ 1.2.1
IcyClawz.ItemSellPrice
diff --git a/ItemSellPrice/Plugin.cs b/ItemSellPrice/Plugin.cs
index 5e3e927..157285c 100644
--- a/ItemSellPrice/Plugin.cs
+++ b/ItemSellPrice/Plugin.cs
@@ -5,7 +5,7 @@ using System.Reflection;
namespace IcyClawz.ItemSellPrice
{
- [BepInPlugin("com.IcyClawz.ItemSellPrice", "IcyClawz.ItemSellPrice", "1.2.0")]
+ [BepInPlugin("com.IcyClawz.ItemSellPrice", "IcyClawz.ItemSellPrice", "1.2.1")]
public class Plugin : BaseUnityPlugin
{
private void Awake()
diff --git a/MagazineInspector/MagazineInspector.csproj b/MagazineInspector/MagazineInspector.csproj
index 4c31eeb..483f493 100644
--- a/MagazineInspector/MagazineInspector.csproj
+++ b/MagazineInspector/MagazineInspector.csproj
@@ -3,7 +3,7 @@
net472
IcyClawz.MagazineInspector
- 1.2.0
+ 1.2.1
IcyClawz.MagazineInspector
diff --git a/MagazineInspector/Plugin.cs b/MagazineInspector/Plugin.cs
index d4ccfde..09fa24f 100644
--- a/MagazineInspector/Plugin.cs
+++ b/MagazineInspector/Plugin.cs
@@ -4,7 +4,7 @@ using System.Reflection;
namespace IcyClawz.MagazineInspector
{
- [BepInPlugin("com.IcyClawz.MagazineInspector", "IcyClawz.MagazineInspector", "1.2.0")]
+ [BepInPlugin("com.IcyClawz.MagazineInspector", "IcyClawz.MagazineInspector", "1.2.1")]
public class Plugin : BaseUnityPlugin
{
private void Awake()