1.19-1.0.1-unstable

This commit is contained in:
RyanTLG
2022-10-10 18:13:25 +02:00
parent 593208c052
commit 48a0915730
22 changed files with 168 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
package net.arcmods.ryantlg.customToolItemClasses.not;
import net.minecraft.item.ShovelItem;
import net.minecraft.item.ToolMaterial;
public class notShovelItem extends ShovelItem{
public notShovelItem(ToolMaterial material, float attackDamage, float attackSpeed, Settings settings) {
super(material, attackDamage, attackSpeed, settings);
}
}