Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Clazex committed Dec 9, 2021
1 parent 760924d commit 4520047
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GodSeekerPlus/GodSeekerPlus.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyTitle>GodSeekerPlus</AssemblyTitle>
<Version>0.13.0</Version>
<Version>0.13.1</Version>
<Description>A Hollow Knight mod to enhance your Godhome experience</Description>
<Authors>Clazex</Authors>
<Copyright>Copyright © 2021 Clazex</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion GodSeekerPlus/Modules/P5Health.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ internal sealed class P5Health : Module {
private static readonly Type scalerType = typeof(HealthManager)
.GetNestedType("HPScaleGG", BindingFlags.NonPublic);

private static readonly FieldInfo scalerField = typeof(BossSceneController)
private static readonly FieldInfo scalerField = typeof(HealthManager)
.GetField("hpScale", BindingFlags.Instance | BindingFlags.NonPublic);

private static readonly FieldInfo lv1Field = scalerType.GetField("level1");
Expand Down

0 comments on commit 4520047

Please sign in to comment.