From 1a70f48a96e2960ccf404c2068b033a81ab94f89 Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Sun, 4 Jun 2023 22:43:00 -0500 Subject: [PATCH] Rearrange queue up sprint block --- sig/App.java | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/sig/App.java b/sig/App.java index efa3121..2f486f0 100644 --- a/sig/App.java +++ b/sig/App.java @@ -463,17 +463,14 @@ class Server break; } - fightLoop: - while (true){ + if (queueUpSprint){ + PressKey(KeyEvent.VK_N); + nextActionTimer=100; + queueUpSprint=false; + } else { if (fighting){ - if (queueUpSprint){ - PressKey(KeyEvent.VK_N); - nextActionTimer=100; - break fightLoop; - } run(Rotation.SCHOLAR); } - break fightLoop; } long difference=System.currentTimeMillis()-lastFrame; bioTimer=Math.max(0,bioTimer-difference);