powers thread

This commit is contained in:
2024-04-23 06:24:25 -05:00
parent bb6828ec8e
commit 47243dd48d
+6 -1
View File
@@ -529,9 +529,14 @@ public class WorldServer {
Logger.info("Starting Mine Thread...");
Thread mineThread = new Thread(new MineThread());
mineThread.setName("hourlyJob");
mineThread.setName("mine thread");
mineThread.start();
Logger.info("Starting Power Thread...");
Thread powerThread = new Thread(new PowersThread());
powerThread.setName("power thread");
powerThread.start();
return true;
}