mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Additional Block Material API
Faster version for isSolid() that utilizes NMS's state for isSolid instead of the slower process to do this in the Bukkit API Adds API for buildable, replaceable, burnable too.
This commit is contained in:
parent
d9c0a60246
commit
119c616ab9
1 changed files with 19 additions and 0 deletions
|
@ -440,6 +440,25 @@ public class CraftBlock implements Block {
|
|||
return this.getNMS().liquid();
|
||||
}
|
||||
|
||||
// Paper start
|
||||
@Override
|
||||
public boolean isBuildable() {
|
||||
return this.getNMS().isSolid(); // This is in fact isSolid, despite the fact that isSolid below returns blocksMotion
|
||||
}
|
||||
@Override
|
||||
public boolean isBurnable() {
|
||||
return this.getNMS().ignitedByLava();
|
||||
}
|
||||
@Override
|
||||
public boolean isReplaceable() {
|
||||
return this.getNMS().canBeReplaced();
|
||||
}
|
||||
@Override
|
||||
public boolean isSolid() {
|
||||
return this.getNMS().blocksMotion();
|
||||
}
|
||||
// Paper end
|
||||
|
||||
@Override
|
||||
public PistonMoveReaction getPistonMoveReaction() {
|
||||
return PistonMoveReaction.getById(this.getNMS().getPistonPushReaction().ordinal());
|
||||
|
|
Loading…
Reference in a new issue