mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-11 18:22:08 -07:00
Add Block#isValidTool
This commit is contained in:
@@ -693,5 +693,9 @@ public class CraftBlock implements Block {
|
|||||||
public String translationKey() {
|
public String translationKey() {
|
||||||
return this.getNMS().getBlock().getDescriptionId();
|
return this.getNMS().getBlock().getDescriptionId();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isValidTool(ItemStack itemStack) {
|
||||||
|
return getDrops(itemStack).size() != 0;
|
||||||
|
}
|
||||||
// Paper end
|
// Paper end
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user