Skip to content

Commit

Permalink
Merge pull request #343 from BUTR/dev
Browse files Browse the repository at this point in the history
v2.8.6
  • Loading branch information
Aragas authored Jul 5, 2023
2 parents e9bb052 + 1bdf18b commit f165c69
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--Development Variables-->
<PropertyGroup>
<!--Module Version-->
<Version>2.8.5</Version>
<Version>2.8.6</Version>
<!--Harmony Version-->
<HarmonyVersion>2.2.2</HarmonyVersion>
<HarmonyExtensionsVersion>3.2.0.77</HarmonyExtensionsVersion>
Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
---------------------------------------------------------------------------------------------------
Version: 2.8.6
Game Versions: v1.0.0,v1.0.1,v1.0.2,v1.0.3,v1.1.0,v1.1.1,v1.1.2,v1.1.3,v1.1.4,v1.1.5,v1.2.0
* Disabled AutoGen catch, seem to have a more severe performance impact than expected
---------------------------------------------------------------------------------------------------
Version: 2.8.5
Game Versions: v1.0.0,v1.0.1,v1.0.2,v1.0.3,v1.1.0,v1.1.1,v1.1.2,v1.1.3,v1.1.4,v1.1.5,v1.2.0
* Fixed BLSE detection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ private set
if (IsEnabled)
{
//BEWPatch.Disable(Harmony);
BEWPatch.EnableAutoGenCatch(Harmony);
//BEWPatch.EnableAutoGenCatch(Harmony);
}
}
else
{
if (IsEnabled)
{
//BEWPatch.Enable(Harmony);
BEWPatch.DisableAutoGenCatch(Harmony);
//BEWPatch.DisableAutoGenCatch(Harmony);
}
}
}
Expand Down Expand Up @@ -110,7 +110,7 @@ public void Enable()
if (!_wasButrLoaderInterceptorCalled)
{
BEWPatch.Enable(Harmony);
BEWPatch.EnableAutoGenCatch(Harmony);
//BEWPatch.EnableAutoGenCatch(Harmony);
}
}

Expand Down

0 comments on commit f165c69

Please sign in to comment.