Update PickaxeBase.java

This commit is contained in:
Steven Tracey 2020-11-21 00:50:17 -05:00 committed by GitHub
parent fb657ab182
commit d3eeb9c039
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,6 @@ import net.nevets.everythingvanilla.Main;
public class PickaxeBase extends PickaxeItem { public class PickaxeBase extends PickaxeItem {
public PickaxeBase(ToolMaterial toolMaterial_1) { public PickaxeBase(ToolMaterial toolMaterial_1) {
super(toolMaterial_1, 1, -2.8f, new Item.Settings().group(Main.ALL)); super(toolMaterial_1, 1, -2.8f, new Item.Settings().group(Main.TOOLS));
} }
} }