From 5679e323e4f98d5cb687ab486bfe79ded8b45c3c Mon Sep 17 00:00:00 2001 From: IM23a-cernik Date: Wed, 21 May 2025 09:15:01 +0200 Subject: [PATCH] Added Stalinium Shovel to the Creativemode Tab Signed-off-by: IM23a-cernik --- gradle.properties | 2 +- .../java/net/krituximon/stalinium/item/ModCreativeModeTabs.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 8a7487e..fc5b2a0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -34,7 +34,7 @@ mod_name=Stalinium # 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=0.0.7 +mod_version=0.0.8 # 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/net/krituximon/stalinium/item/ModCreativeModeTabs.java b/src/main/java/net/krituximon/stalinium/item/ModCreativeModeTabs.java index 5816c07..03b4618 100644 --- a/src/main/java/net/krituximon/stalinium/item/ModCreativeModeTabs.java +++ b/src/main/java/net/krituximon/stalinium/item/ModCreativeModeTabs.java @@ -28,6 +28,7 @@ public class ModCreativeModeTabs { output.accept(ModBlocks.STALINIUM_PRESS.get()); output.accept(ModItems.STALINIUM_SWORD.get()); output.accept(ModItems.STALINIUM_AXE.get()); + output.accept(ModItems.STALINIUM_SHOVEL.get()); }).build()); public static void register(IEventBus eventBus) {