From 85cb9624bd8cf9fdbc50581f4be8b6f477a6427a Mon Sep 17 00:00:00 2001 From: Abbysssal Date: Sat, 24 Sep 2022 20:47:22 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20v3.6.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Directory.Build.props | 2 +- RogueLibsCore/Patches/Patches_Misc.cs | 6 +++--- RogueLibsCore/RogueLibs.cs | 6 +++--- RogueLibsCore/RogueLibsPlugin.cs | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index a05868c66..258fcbf44 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -4,7 +4,7 @@ net471 - 3.7.0-beta.1 + 3.6.4 enable diff --git a/RogueLibsCore/Patches/Patches_Misc.cs b/RogueLibsCore/Patches/Patches_Misc.cs index 6c4be0b5d..5227d32d2 100644 --- a/RogueLibsCore/Patches/Patches_Misc.cs +++ b/RogueLibsCore/Patches/Patches_Misc.cs @@ -34,9 +34,9 @@ public void PatchMisc() // clear hooks on PlayfieldObject.RecycleAwake() Patcher.Postfix(typeof(PlayfieldObject), nameof(PlayfieldObject.RecycleAwake)); - Patcher.Prefix(typeof(MenuGUI), nameof(MenuGUI.PressedDiscordButton)); - Patcher.Prefix(typeof(MenuGUI), nameof(MenuGUI.PressedSignUp)); - Patcher.Postfix(typeof(MenuGUI), nameof(MenuGUI.RealAwake)); + // Patcher.Prefix(typeof(MenuGUI), nameof(MenuGUI.PressedDiscordButton)); + // Patcher.Prefix(typeof(MenuGUI), nameof(MenuGUI.PressedSignUp)); + // Patcher.Postfix(typeof(MenuGUI), nameof(MenuGUI.RealAwake)); Patcher.AnyErrors(); diff --git a/RogueLibsCore/RogueLibs.cs b/RogueLibsCore/RogueLibs.cs index 4b4d026c4..defacd21a 100644 --- a/RogueLibsCore/RogueLibs.cs +++ b/RogueLibsCore/RogueLibs.cs @@ -31,15 +31,15 @@ static RogueLibs() /// public const string Name = "RogueLibsCore"; - internal const string AssemblyVersion = "3.7.0.0"; + internal const string AssemblyVersion = "3.6.4.0"; /// /// Version of RogueLibs that the current assembly is compiled with. /// - public const string CompiledVersion = "3.7.0"; + public const string CompiledVersion = "3.6.4"; /// /// Semantic version of RogueLibs that the current assembly is compiled with. Don't use it in BepInPlugin. /// - public const string CompiledSemanticVersion = "3.7.0"; + public const string CompiledSemanticVersion = "3.6.4"; /// /// Currently installed and running version of RogueLibs. /// diff --git a/RogueLibsCore/RogueLibsPlugin.cs b/RogueLibsCore/RogueLibsPlugin.cs index 2df6c842c..ffd5a3299 100644 --- a/RogueLibsCore/RogueLibsPlugin.cs +++ b/RogueLibsCore/RogueLibsPlugin.cs @@ -99,7 +99,7 @@ public void Awake() PatchAgents(); PatchInteractions(); PatchAgentInteractions(); - PatchWeapons(); + // PatchWeapons(); #if DEBUG Patcher.SortResults(); Patcher.LogResults();