cleanup, remove ambient occlusion from models
This commit is contained in:
parent
8e0bbd06c2
commit
d1a0847303
38 changed files with 175 additions and 192 deletions
|
@ -84,7 +84,7 @@ import common.tags.TagObject;
|
|||
import common.util.BlockPos;
|
||||
import common.util.EncryptUtil;
|
||||
import common.util.ExtMath;
|
||||
import common.util.LazyLoadBase;
|
||||
import common.util.LazyLoader;
|
||||
import common.util.PortalType;
|
||||
import common.util.Position;
|
||||
import common.util.Util;
|
||||
|
@ -103,7 +103,7 @@ import server.world.Region;
|
|||
import server.world.WorldServer;
|
||||
|
||||
public final class Server implements IThreadListener {
|
||||
private static final LazyLoadBase<NioEventLoopGroup> SERVER_NIO_EVENTLOOP = new LazyLoadBase<NioEventLoopGroup>() {
|
||||
private static final LazyLoader<NioEventLoopGroup> SERVER_NIO_EVENTLOOP = new LazyLoader<NioEventLoopGroup>() {
|
||||
protected NioEventLoopGroup load() {
|
||||
return new NioEventLoopGroup(0, (new ThreadFactoryBuilder()).setNameFormat("Netty Server IO #%d").setDaemon(true).build());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue