Skip to content

Commit

Permalink
AutoHook 2.4.3.1 [PUSH]
Browse files Browse the repository at this point in the history
#75 Fixed
  • Loading branch information
InitialDet committed Feb 27, 2023
1 parent e217747 commit 79f2e06
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AutoHook/AutoHook.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Det</Authors>
<Version>2.4.3.0</Version>
<Version>2.4.3.1</Version>
<Description>Auto hooks for you</Description>
<PackageProjectUrl>https://github.com/InitialDet/AutoHook</PackageProjectUrl>
<Configurations>Release;Debug</Configurations>
Expand Down
2 changes: 1 addition & 1 deletion AutoHook/Classes/AvailableAutoCast.cs
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ public override void SetThreshold(uint newcost)
public class AutoWateredCordial : BaseActionCast
{
readonly uint itemGPRecovery = 150;
public AutoWateredCordial() : base("WateredCordial", Data.IDs.Item.WateredCordial, ActionType.Item)
public AutoWateredCordial() : base("Watered Cordial", Data.IDs.Item.WateredCordial, ActionType.Item)
{
GPThreshold = 1;
}
Expand Down
4 changes: 2 additions & 2 deletions AutoHook/Configurations/AutoCastsConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ public class AutoCastsConfig

public AutoCordial AutoCordial = new();

public AutoHQCordial AutoHQWateredCordial = new();
public AutoHQWateredCordial AutoHQWateredCordial = new();

public AutoCordial AutoWateredCordial = new();
public AutoWateredCordial AutoWateredCordial = new();

public AutoThaliaksFavor AutoThaliaksFavor = new();

Expand Down
9 changes: 8 additions & 1 deletion AutoHook/Ui/TabGeneral.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,14 @@ private void DrawChangelog()
ImGui.Separator();
ImGui.TextWrapped("- Added Watered Cortials for AutoCasts");

ImGui.Spacing();
ImGui.Spacing();

if (ImGui.TreeNode("2.4.3.x"))
{
ImGui.TextWrapped("- Fixed duplicated GP Configs");

ImGui.TreePop();
}

if (ImGui.BeginChild("old_versions", new Vector2(0, 150), true))
{
Expand Down

0 comments on commit 79f2e06

Please sign in to comment.