diff --git a/core/src/mindustry/ai/Pathfinder.java b/core/src/mindustry/ai/Pathfinder.java index 0fadcb970a..0d5a8af8d8 100644 --- a/core/src/mindustry/ai/Pathfinder.java +++ b/core/src/mindustry/ai/Pathfinder.java @@ -138,7 +138,7 @@ public class Pathfinder implements Runnable{ /** Starts or restarts the pathfinding thread. */ private void start(){ stop(); - thread = Threads.daemon(this); + thread = Threads.daemon("Pathfinder", this); } /** Stops the pathfinding thread. */