mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 13:36:44 +01:00
attempt to track down some bugs
This commit is contained in:
parent
2db976c840
commit
edb0debd16
1 changed files with 6 additions and 0 deletions
|
@ -203,6 +203,12 @@ public class World implements IBlockAccess {
|
||||||
}
|
}
|
||||||
result = lastChunkAccessed;
|
result = lastChunkAccessed;
|
||||||
}
|
}
|
||||||
|
if(result.j != i || result.k != j) {
|
||||||
|
if(this instanceof WorldServer) {
|
||||||
|
WorldServer ws = (WorldServer) this;
|
||||||
|
MinecraftServer.a.severe("Chunk fetched was not the chunk requested.");
|
||||||
|
}
|
||||||
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
|
|
Loading…
Reference in a new issue