Fixed guide message for target chunkloading count

This commit is contained in:
LemADEC 2015-09-02 01:18:43 +02:00
parent a03c69cfb8
commit e3798ac516

View file

@ -243,7 +243,7 @@ public class EntityJump extends Entity {
for (int z = z1; z <= z2; z++) {
chunkCount++;
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;
}
ForgeChunkManager.forceChunk(targetWorldTicket, new ChunkCoordIntPair(x, z));