Fixed guide message for target chunkloading count
This commit is contained in:
parent
a03c69cfb8
commit
e3798ac516
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ public class EntityJump extends Entity {
|
||||||
for (int z = z1; z <= z2; z++) {
|
for (int z = z1; z <= z2; z++) {
|
||||||
chunkCount++;
|
chunkCount++;
|
||||||
if (chunkCount > targetWorldTicket.getMaxChunkListDepth()) {
|
if (chunkCount > targetWorldTicket.getMaxChunkListDepth()) {
|
||||||
reason.append("Ship is extending over too many chunks, max is T:" + sourceWorldTicket.getMaxChunkListDepth() + ". Aborting.");
|
reason.append("Ship is extending over too many chunks, max is T:" + targetWorldTicket.getMaxChunkListDepth() + ". Aborting.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
ForgeChunkManager.forceChunk(targetWorldTicket, new ChunkCoordIntPair(x, z));
|
ForgeChunkManager.forceChunk(targetWorldTicket, new ChunkCoordIntPair(x, z));
|
||||||
|
|
Loading…
Reference in a new issue