Skip to content

Commit

Permalink
Fix quetzals
Browse files Browse the repository at this point in the history
  • Loading branch information
FALSkills committed Oct 12, 2024
1 parent f297fd2 commit 4d49475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/dax/walker_engine/navigation_utils/Quetzal.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

public class Quetzal {

public static final int QUETZAL_WIDGET_ROOT = 8741;
public static final int QUETZAL_WIDGET_ROOT = 874;

public enum Location {
ALDARIN("Aldarin", 1390, 2901, 0),
Expand Down Expand Up @@ -58,7 +58,7 @@ public int getZ() {
public static boolean to(Location location){

if (!Interfaces.isInterfaceSubstantiated(QUETZAL_WIDGET_ROOT)
&& !InteractionHelper.click(InteractionHelper.getRSObject(Filters.Objects.nameEquals("Renu")), "Travel", () -> Interfaces.isInterfaceSubstantiated(QUETZAL_WIDGET_ROOT) ? WaitFor.Return.SUCCESS : WaitFor.Return.IGNORE)) {
&& !InteractionHelper.click(InteractionHelper.getRSNPC(Filters.NPCs.nameEquals("Renu")), "Travel", () -> Interfaces.isInterfaceSubstantiated(QUETZAL_WIDGET_ROOT) ? WaitFor.Return.SUCCESS : WaitFor.Return.IGNORE)) {
return false;
}

Expand Down

0 comments on commit 4d49475

Please sign in to comment.