From f011e8509bcb35b2c429ae0410c23a9873b8f865 Mon Sep 17 00:00:00 2001 From: radimous Date: Fri, 13 Dec 2024 02:56:53 +0100 Subject: [PATCH] 1.4 rang support --- gradle.properties | 2 +- src/main/java/com/radimous/vhatcaniroll/logic/Items.java | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index ee7b811..20bf231 100644 --- a/gradle.properties +++ b/gradle.properties @@ -38,7 +38,7 @@ mod_name=VHat Can I Roll? # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GNU LGPL 3.0 # The mod version. See https://semver.org/ -mod_version=1.3 +mod_version=1.4 # 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/com/radimous/vhatcaniroll/logic/Items.java b/src/main/java/com/radimous/vhatcaniroll/logic/Items.java index 97bef78..80a0bc5 100644 --- a/src/main/java/com/radimous/vhatcaniroll/logic/Items.java +++ b/src/main/java/com/radimous/vhatcaniroll/logic/Items.java @@ -43,7 +43,8 @@ public class Items { "BATTLESTAFF", "TRIDENT", "PLUSHIE", - "LOOT_SACK" + "LOOT_SACK", + "RANG" ); try{ Class woldItemClass = Class.forName("xyz.iwolfking.woldsvaults.init.ModItems");