From fc7f689ea4dbbd3b6072792b9dffdb8d4fedfaf9 Mon Sep 17 00:00:00 2001 From: buthed010203 Date: Fri, 10 Sep 2021 15:56:42 -0400 Subject: [PATCH] Named pathfinder thread (#5969) --- core/src/mindustry/ai/Pathfinder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */