From a64391722125ae3bdae7ca5a3263705b12ee051c Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 27 Nov 2024 10:01:43 +0100 Subject: [PATCH] Increase delay after runChatCommand() --- src/main/java/net/wurstclient/test/WurstClientTestHelper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/net/wurstclient/test/WurstClientTestHelper.java b/src/main/java/net/wurstclient/test/WurstClientTestHelper.java index 1c84525852..a3992f3944 100644 --- a/src/main/java/net/wurstclient/test/WurstClientTestHelper.java +++ b/src/main/java/net/wurstclient/test/WurstClientTestHelper.java @@ -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. * *

@@ -372,7 +372,7 @@ public static void runChatCommand(String command) // Command is valid, send it netHandler.sendChatCommand(command); }); - waitForWorldTicks(1); + waitForWorldTicks(2); } /**