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

Merge pull request #1198 from J3fftw1/asd

Fixed ExplosivePickaxe
This commit is contained in:
TheBusyBiscuit 2019-10-18 07:36:32 +02:00 committed by GitHub
commit 2ff2355bb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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