1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Merge pull request #1203 from J3fftw1/veinminerfix

fixes #1202
This commit is contained in:
TheBusyBiscuit 2019-10-20 14:25:25 +02:00 committed by GitHub
commit 1c12b892fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,11 @@ public class PickaxeOfVeinMining extends SimpleSlimefunItem<BlockBreakHandler> {
public PickaxeOfVeinMining(Category category, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe) { public PickaxeOfVeinMining(Category category, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe) {
super(category, item, recipeType, recipe); super(category, item, recipeType, recipe);
} }
@Override
protected boolean areItemHandlersPrivate() {
return false;
}
@Override @Override
public BlockBreakHandler getItemHandler() { public BlockBreakHandler getItemHandler() {