Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-18 20:40:08 +01:00
added load chunk method
Dieser Commit ist enthalten in:
Ursprung
3477a86995
Commit
02a1c24746
@ -75,6 +75,11 @@ public class CraftWorld implements World {
|
|||||||
return world.A.a(chunk.getX(), chunk.getZ());
|
return world.A.a(chunk.getX(), chunk.getZ());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void loadChunk(Chunk chunk) {
|
||||||
|
world.A.d(chunk.getX(), chunk.getZ());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public Block updateBlock(int x, int y, int z) {
|
public Block updateBlock(int x, int y, int z) {
|
||||||
BlockCoordinate loc = new BlockCoordinate(x, y, z);
|
BlockCoordinate loc = new BlockCoordinate(x, y, z);
|
||||||
CraftBlock block = (CraftBlock)blockCache.get(loc);
|
CraftBlock block = (CraftBlock)blockCache.get(loc);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren