diff --git a/Changelog.md b/Changelog.md index 2adce0a..76169f9 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,11 @@ # Upcoming changes +# Version NeoForge-1.26.4-MC-1.21.1 + +Add support for "per-player-stats" in Turn-Based-Battle. + +Update to Neoforge 21.1.73 (Minecraft 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/gradle.properties b/gradle.properties index 0050103..0cea3e4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -37,7 +37,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-MC-1.21.1 +mod_version=1.26.4-MC-1.21.1 # 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 0239022..afa501b 100644 --- a/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java +++ b/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java @@ -41,7 +41,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-MC-1.21.1"; + public static final String VERSION = "1.26.4-MC-1.21.1"; 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/";