diff --git a/About/About.xml b/About/About.xml
index 48c572d..50c4d29 100644
--- a/About/About.xml
+++ b/About/About.xml
@@ -2,10 +2,9 @@
Blueprints
Fluffy
- fluffy-blueprints
-
+ Fluffy.Blueprints
- 1.3.3052
+ 1.3
\ No newline at end of file
diff --git a/Assemblies/BetterKeybinding.dll b/Assemblies/BetterKeybinding.dll
index c79095a..6b8ce49 100644
Binary files a/Assemblies/BetterKeybinding.dll and b/Assemblies/BetterKeybinding.dll differ
diff --git a/Assemblies/Blueprints.dll b/Assemblies/Blueprints.dll
index 6d77dff..4eff135 100644
Binary files a/Assemblies/Blueprints.dll and b/Assemblies/Blueprints.dll differ
diff --git a/Source/Blueprints/Blueprints.csproj b/Source/Blueprints/Blueprints.csproj
index 400fbcb..078036b 100644
--- a/Source/Blueprints/Blueprints.csproj
+++ b/Source/Blueprints/Blueprints.csproj
@@ -1,5 +1,6 @@
-
+
Debug
@@ -35,33 +36,7 @@
8
-
- packages\Lib.Harmony.2.0.0.6\lib\net472\0Harmony.dll
- False
-
-
- C:\Program Files (x86)\Steam\steamapps\common\RimWorld\RimWorldWin64_Data\Managed\Assembly-CSharp.dll
- False
-
-
-
-
-
-
-
-
- C:\Program Files (x86)\Steam\steamapps\common\RimWorld\RimWorldWin64_Data\Managed\UnityEngine.CoreModule.dll
- False
-
-
- C:\Program Files (x86)\Steam\steamapps\common\RimWorld\RimWorldWin64_Data\Managed\UnityEngine.IMGUIModule.dll
- False
-
-
- C:\Program Files (x86)\Steam\steamapps\common\RimWorld\RimWorldWin64_Data\Managed\UnityEngine.TextRenderingModule.dll
- False
-
@@ -82,24 +57,22 @@
-
-
-
{7A074D05-578C-48C4-9A0E-1C289CF862E1}
BetterKeybinding
+
+
+ 1.3.3067
+
+
+ runtime
+
+
mod update
-
\ No newline at end of file
diff --git a/Source/Blueprints/DefOf.cs b/Source/Blueprints/DefOf.cs
index 40c2a22..fea9605 100644
--- a/Source/Blueprints/DefOf.cs
+++ b/Source/Blueprints/DefOf.cs
@@ -1,5 +1,5 @@
-// DefOf.cs
-// Copyright Karel Kroeze, 2019-2019
+// Copyright Karel Kroeze, 2021-2021.
+// Blueprints/Blueprints/DefOf.cs
using RimWorld;
using Verse;
diff --git a/Source/Blueprints/Patch_InspectGizmoGrid_DrawInspectGizmoGridFor.cs b/Source/Blueprints/Patch_InspectGizmoGrid_DrawInspectGizmoGridFor.cs
index e49da07..3c62da7 100644
--- a/Source/Blueprints/Patch_InspectGizmoGrid_DrawInspectGizmoGridFor.cs
+++ b/Source/Blueprints/Patch_InspectGizmoGrid_DrawInspectGizmoGridFor.cs
@@ -1,4 +1,4 @@
-// Copyright Karel Kroeze, 2020-2021.
+// Copyright Karel Kroeze, 2021-2021.
// Blueprints/Blueprints/Patch_InspectGizmoGrid_DrawInspectGizmoGridFor.cs
using System.Collections.Generic;
@@ -14,9 +14,17 @@ namespace Blueprints
[HarmonyPatch(typeof(InspectGizmoGrid), nameof(InspectGizmoGrid.DrawInspectGizmoGridFor))]
public class Patch_InspectGizmoGrid_DrawInspectGizmoGridFor
{
- public static FieldInfo gizmoList = AccessTools.Field(typeof(InspectGizmoGrid), "gizmoList");
+ public static MethodInfo addInfo = AccessTools.Method(typeof(List), nameof(List.Add));
+
+ public static MethodInfo clearInfo = AccessTools.Method(typeof(List