mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-16 06:30:46 +01:00
Fixed an issue where the block cache became out of date and events were giving erroneous block information.
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
5048539bfa
commit
31192b03fe
2 changed files with 3 additions and 0 deletions
|
@ -35,6 +35,8 @@ public class CraftWorld implements World {
|
||||||
if (block == null) {
|
if (block == null) {
|
||||||
block = new CraftBlock(this, x, y, z, world.a(x, y, z), (byte)world.b(x, y, z));
|
block = new CraftBlock(this, x, y, z, world.a(x, y, z), (byte)world.b(x, y, z));
|
||||||
blockCache.put(loc, block);
|
blockCache.put(loc, block);
|
||||||
|
} else {
|
||||||
|
block.update();
|
||||||
}
|
}
|
||||||
|
|
||||||
return block;
|
return block;
|
||||||
|
|
|
@ -319,5 +319,6 @@ public class CraftBlock implements Block {
|
||||||
public void update() {
|
public void update() {
|
||||||
type = world.getHandle().a(x, y, z);
|
type = world.getHandle().a(x, y, z);
|
||||||
data = (byte)world.getHandle().b(x, y, z);
|
data = (byte)world.getHandle().b(x, y, z);
|
||||||
|
light = (byte)world.getHandle().j(x, y, z);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue