geforkt von Mirrors/FastAsyncWorldEdit
actually fix AsyncBlock
Dieser Commit ist enthalten in:
Ursprung
935130aa0e
Commit
59c227b49a
@ -314,6 +314,21 @@ public class AsyncBlock implements Block {
|
|||||||
return world.getBlock(x, y, z).getMaterial().isLiquid();
|
return world.getBlock(x, y, z).getMaterial().isLiquid();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isBuildable() {
|
||||||
|
return this.getUnsafeBlock().isBuildable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isBurnable() {
|
||||||
|
return this.getType().isBurnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isReplaceable() {
|
||||||
|
return this.getUnsafeBlock().isReplaceable();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public double getTemperature() {
|
public double getTemperature() {
|
||||||
return this.getWorld().getTemperature(this.getX(), this.getZ());
|
return this.getWorld().getTemperature(this.getX(), this.getZ());
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren