diff --git a/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientServerWorld.java b/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientServerWorld.java index 8c6ce66cd..f8808fb64 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientServerWorld.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientServerWorld.java @@ -37,7 +37,7 @@ public class DhClientServerWorld extends AbstractDhServerWorld dhLevels = Collections.synchronizedSet(new HashSet<>()); - public ExecutorService dhTickerThread = ThreadUtil.makeSingleThreadPool("Client Server World Ticker Thread", 2); + public ExecutorService dhTickerThread = ThreadUtil.makeSingleThreadPool("Client Server World Ticker", 2); public EventLoop eventLoop = new EventLoop(this.dhTickerThread, this::_clientTick); //TODO: Rate-limit the loop diff --git a/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientWorld.java b/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientWorld.java index 97d3865e3..624c5d82d 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientWorld.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/world/DhClientWorld.java @@ -39,7 +39,7 @@ public class DhClientWorld extends AbstractDhWorld implements IDhClientWorld public final ClientOnlySaveStructure saveStructure; public final ClientNetworkState networkState = new ClientNetworkState(); - public final ExecutorService dhTickerThread = ThreadUtil.makeSingleThreadPool("Client World Ticker Thread"); + public final ExecutorService dhTickerThread = ThreadUtil.makeSingleThreadPool("Client World Ticker"); public final EventLoop eventLoop = new EventLoop(this.dhTickerThread, this::_clientTick);