Skip to content

Commit

Permalink
name fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaksuhn committed Feb 1, 2024
1 parent 742c53d commit 030d9ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions SomethingNeedDoing/Interface/HelpWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ static void DisplayChangelog(string date, string changes, bool separator = true)
"- Added GetTargetHP()\n" +
"- Added GetTargetHPP()\n\n" +
"- Added RequestAchievementProgress()\n" +
"- Added GetAchievementProgress()\n\n" +
"- Added GetRequestedAchievementProgress()\n\n" +
"- Added GetContentTimeLeft()\n" +
"- Replaced GetCurrentOceanFishingDuration() with GetCurrentOceanFishingZoneTimeLeft()\n" +
"- Added GetCurrentOceanFishingScore()\n" +
Expand All @@ -349,7 +349,7 @@ static void DisplayChangelog(string date, string changes, bool separator = true)
"- Added SetAutoHookAutoGigSpeed()\n" +
"- Added SetAutoHookPreset()\n" +
"- Added UseAutoHookAnonymousPreset()\n" +
"- Added DeletedSelectedAutoHookPreset()\n");
"- Added DeleteSelectedAutoHookPreset()\n");

DisplayChangelog(
"2024-01-30",
Expand Down
2 changes: 1 addition & 1 deletion SomethingNeedDoing/Misc/Commands/CharacterStateCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,5 @@ public static void SetRotation(float y)
}

public unsafe void RequestAchievementProgress(uint id) => Achievement.Instance()->RequestAchievementProgress(id);
public unsafe uint GetAchievementProgress() => Achievement.Instance()->ProgressMax;
public unsafe uint GetRequestedAchievementProgress() => Achievement.Instance()->ProgressMax;
}

0 comments on commit 030d9ee

Please sign in to comment.