diff --git a/gradle.properties b/gradle.properties index 1f72a73..a4e1bdb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -48,7 +48,7 @@ mod_name=Nugget Mod # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=MIT # The mod version. See https://semver.org/ -mod_version=1.2.1 +mod_version=1.2.2 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/xyz/sillyangel/nugget/item/ModToolTiers.java b/src/main/java/xyz/sillyangel/nugget/item/ModToolTiers.java index c31b4e8..4131471 100644 --- a/src/main/java/xyz/sillyangel/nugget/item/ModToolTiers.java +++ b/src/main/java/xyz/sillyangel/nugget/item/ModToolTiers.java @@ -5,5 +5,5 @@ import xyz.sillyangel.nugget.util.ModTags; public class ModToolTiers { public static final ToolMaterial NUGGET = new ToolMaterial(ModTags.Blocks.INCORRECT_FOR_NUGGET_TOOL, - 1500, 4.5f, 3.5f, 22, ModTags.Items.NUGGET_REPAIRS); + 1500, 8f, 3.5f, 22, ModTags.Items.NUGGET_REPAIRS); }