This commit is contained in:
2025-01-27 10:03:57 -06:00
parent 9aa053beb6
commit 58a0b6150f
+6 -6
View File
@@ -41,12 +41,12 @@ public class MobAIThread implements Runnable{
} }
} }
} }
try { }
Thread.sleep(100); try {
} catch (InterruptedException e) { Thread.sleep(100);
Logger.error("AI Thread interrupted", e); } catch (InterruptedException e) {
Thread.currentThread().interrupt(); Logger.error("AI Thread interrupted", e);
} Thread.currentThread().interrupt();
} }
} }
} }