Launch sector description

This commit is contained in:
Anuken
2022-04-20 14:15:23 -04:00
parent 6441d0b2d5
commit f1c6b6f949
5 changed files with 13 additions and 4 deletions

View File

@@ -194,12 +194,14 @@ public final class FogControl implements CustomChunk{
//not run clientside, the CPU side isn't needed here.
if(staticFogThread == null && !net.client()){
staticFogThread = new StaticFogThread();
staticFogThread.setPriority(Thread.NORM_PRIORITY - 1);
staticFogThread.setDaemon(true);
staticFogThread.start();
}
if(dynamicFogThread == null){
dynamicFogThread = new DynamicFogThread();
dynamicFogThread.setPriority(Thread.NORM_PRIORITY - 1);
dynamicFogThread.setDaemon(true);
dynamicFogThread.start();
}