Skip to content

Commit

Permalink
fix: update method calls to match casing convention in DragonRoad
Browse files Browse the repository at this point in the history
  • Loading branch information
PUNK3DAF committed Nov 7, 2024
1 parent f8766d7 commit 7b53494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Story/DragonRoad[Upholder].cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ public void ScriptMain(IScriptInterface bot)

public void StoryLine()
{
if (!Core.isUpholder() || Core.isCompletedBefore(4547))
if (!Core.IsUpholder() || Core.isCompletedBefore(4547))
{
Core.Logger(!Core.isUpholder() ? "Not an upholder." : "Quest Already complete");
Core.Logger(!Core.IsUpholder() ? "Not an upholder." : "Quest Already complete");
return;
}

Expand Down

0 comments on commit 7b53494

Please sign in to comment.