More moves and compilation fixes
This commit is contained in:
@@ -1087,9 +1087,9 @@ public final class CraftingCPUCluster implements IAECluster, ICraftingCPU {
|
||||
|
||||
if (te.hasCustomInventoryName()) {
|
||||
if (this.myName != null) {
|
||||
this.myName.append(" ").append(te.getCustomInventoryName());
|
||||
this.myName = this.myName.copy().append(" ").append(te.getCustomInventoryName());
|
||||
} else {
|
||||
this.myName = te.getCustomInventoryName().deepCopy();
|
||||
this.myName = te.getCustomInventoryName();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -161,7 +161,7 @@ public class QuantumCluster implements ILocatable, IAECluster {
|
||||
final World theWorld = qc.center.getWorld();
|
||||
if (!qc.isDestroyed) {
|
||||
ChunkPos cPos = new ChunkPos(qc.center.getPos());
|
||||
if (theWorld.getChunkProvider().isChunkLoaded(cPos)) {
|
||||
if (theWorld.getChunkManager().isChunkLoaded(cPos)) {
|
||||
final DimensionType id = theWorld.dimension.getType();
|
||||
final World cur = theWorld.getServer().getWorld(id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user