diff --git a/CHANGELOG.md b/CHANGELOG.md index 83bcb817..78933392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # 1.3.1 -## V60! v61 +## V60! v62 V60 released barely a single week after me releasing v1.3.0. Very cool! @@ -8,7 +8,7 @@ Anyways here's the update go boil the creatures or something. **Additions**: -- Added V61 support +- Added V62 support - Added VR support for the V60 cutscene - Added Pitch Locked Canvas (enabled by default) for a more pleasant UI experience - Added VR interactions to the elevator diff --git a/README.md b/README.md index 92caa412..42a7a2f4 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Here is a list of LCVR versions and which version(s) of Lethal Company it suppor | LCVR | Lethal Company | |-------------------|-------------------| -| v1.3.1 *(BETA)* | V61 | +| v1.3.1 *(BETA)* | V62 | | v1.3.0 *(LATEST)* | V56 | | v1.2.5 | V50 | | v1.2.4 | V50 | diff --git a/Source/Patches/ItemPatches.cs b/Source/Patches/ItemPatches.cs index 75966f64..73ecca69 100644 --- a/Source/Patches/ItemPatches.cs +++ b/Source/Patches/ItemPatches.cs @@ -59,27 +59,4 @@ private static void LateUpdatePostfix(GrabbableObject __instance, bool __runOrig if (!__runOriginal && __instance.radarIcon != null) __instance.radarIcon.position = __instance.transform.position; } - - /// - /// Prevent the spray paint item from calling "DiscardItem" too early - /// - [HarmonyPatch(typeof(SprayPaintItem), nameof(SprayPaintItem.DiscardItem))] - [HarmonyTranspiler] - private static IEnumerable SprayPaintMoveDiscard(IEnumerable instructions) - { - return instructions.Skip(2).AddItem(new CodeInstruction(OpCodes.Ldarg_0)).AddItem( - new CodeInstruction(OpCodes.Callvirt, - Method(typeof(GrabbableObject), nameof(GrabbableObject.DiscardItem)))); - } - - /// - /// Correct the "equippedUsableItemQE" field when the walkie talkie is pocketed - /// - [HarmonyPatch(typeof(WalkieTalkie), nameof(WalkieTalkie.PocketItem))] - [HarmonyPostfix] - private static void OnPocketWalkie(WalkieTalkie __instance) - { - if (__instance.playerHeldBy != null) - __instance.playerHeldBy.equippedUsableItemQE = false; - } } diff --git a/Source/Plugin.cs b/Source/Plugin.cs index 0e815c6c..26a44a86 100644 --- a/Source/Plugin.cs +++ b/Source/Plugin.cs @@ -31,7 +31,7 @@ public class Plugin : BaseUnityPlugin private readonly string[] GAME_ASSEMBLY_HASHES = [ - "F34BE4B08F191695BAD3D09F7CB8F8EC82A00B5F93A4EC2269BAE94D9ABCA721", // V61 + "45E2312BEEE3C163658C247354F10EE84DE5D594ED18A3D2EFC6B80F07AC1737", // V62 ]; public new static Config Config { get; private set; }