From be78ddc1b6ec004ec1e1836d87c84f372e85986a Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Fri, 1 Nov 2024 13:52:02 +0900 Subject: [PATCH] Version Forge 1.26.4 (MC 1.21.1) --- Changelog.md | 6 ++++++ README.md | 2 +- gradle.properties | 2 +- .../TurnBasedMinecraft/common/TurnBasedMinecraftMod.java | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index 2adce0a..85da9c4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,11 @@ # Upcoming changes +# Version Forge-1.26.4 + +Add support for "per-player-stats" in Turn-Based-Battle. + +Update to Forge 52.0.24 (MC 1.21.1). + # Version Forge-1.26.3 Tweak to "Ping" packet to not create client-local Battle instance if it does diff --git a/README.md b/README.md index 5f21938..c107d10 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ configured for them.) Simply invoke `./gradlew build` in the mod directory and after some time the finished jar will be saved at -`build/libs/TurnBasedMinecraft-Forge-1.26.3-all.jar` +`build/libs/TurnBasedMinecraft-Forge-1.26.4-all.jar` # Reproducibility diff --git a/gradle.properties b/gradle.properties index fb1e512..a441569 100644 --- a/gradle.properties +++ b/gradle.properties @@ -48,7 +48,7 @@ mod_name=TurnBasedMinecraftMod # 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.26.3 +mod_version=1.26.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/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java b/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java index e934c70..31c0712 100644 --- a/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java +++ b/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java @@ -39,7 +39,7 @@ import org.apache.logging.log4j.Logger; public class TurnBasedMinecraftMod { public static final String MODID = "com_burnedkirby_turnbasedminecraft"; public static final String NAME = "Turn Based Minecraft Mod"; - public static final String VERSION = "1.26.3"; + public static final String VERSION = "1.26.4"; public static final String CONFIG_FILENAME = "TBM_Config.toml"; public static final String DEFAULT_CONFIG_FILENAME = "TBM_Config_DEFAULT.toml"; public static final String CONFIG_DIRECTORY = "config/TurnBasedMinecraft/";