mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 01:37:37 +00:00
actually fix AsyncBlock
This commit is contained in:
parent
935130aa0e
commit
59c227b49a
@ -314,6 +314,21 @@ public class AsyncBlock implements Block {
|
||||
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
|
||||
public double getTemperature() {
|
||||
return this.getWorld().getTemperature(this.getX(), this.getZ());
|
||||
|
Loading…
Reference in New Issue
Block a user