Skip to content

Commit

Permalink
Increase delay after runChatCommand()
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander01998 committed Nov 27, 2024
1 parent 837317b commit a643917
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/wurstclient/test/WurstClientTestHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public static void clearChat()
}

/**
* Runs the given chat command and waits one tick for the action to
* Runs the given chat command and waits two ticks for the action to
* complete.
*
* <p>
Expand Down Expand Up @@ -372,7 +372,7 @@ public static void runChatCommand(String command)
// Command is valid, send it
netHandler.sendChatCommand(command);
});
waitForWorldTicks(1);
waitForWorldTicks(2);
}

/**
Expand Down

0 comments on commit a643917

Please sign in to comment.