From 0d28465d1cb785797b5eb0989339e578063fed58 Mon Sep 17 00:00:00 2001 From: jss2a98aj Date: Tue, 21 Dec 2021 01:52:52 -0500 Subject: [PATCH] Fixed internal version numbers so Thaumcraft and others mods will work --- gradle.properties | 2 +- src/main/java/baubles/common/Baubles.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index b350f077..2ce0e990 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,7 +29,7 @@ developmentEnvironmentUserName = "Developer" replaceGradleTokenInFile = common.Baubles.java gradleTokenModId = gradleTokenModName = -gradleTokenVersion = GRADLETOKEN_VERSION +gradleTokenVersion = gradleTokenGroupName = # In case your mod provides an API for other mods to implement you may declare its package here. Otherwise you can diff --git a/src/main/java/baubles/common/Baubles.java b/src/main/java/baubles/common/Baubles.java index 4c9bbb09..2425c628 100644 --- a/src/main/java/baubles/common/Baubles.java +++ b/src/main/java/baubles/common/Baubles.java @@ -28,7 +28,7 @@ public class Baubles { public static final String MODID = "Baubles"; public static final String MODNAME = "Baubles"; - public static final String VERSION = "GRADLETOKEN_VERSION"; + public static final String VERSION = "2.0.3"; @SidedProxy(clientSide = "baubles.client.ClientProxy", serverSide = "baubles.common.CommonProxy") public static CommonProxy proxy;