From d0064749325153669dcbbcb247ee2f8d6eff6130 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 15 Oct 2024 14:46:19 +0900 Subject: [PATCH] Version Forge-1.26.0 --- Changelog.md | 16 ++++++++++++++++ .../common/TurnBasedMinecraftMod.java | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 3cb447a..82741fc 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,21 @@ # Upcoming changes +# Version Forge-1.26.0 + +Port to Forge 52.0.21 (Minecraft 1.21.1). + +Client-config available via `/tbm-client-edit` (same as NeoForge), but there is +no way to access it via the mod-list (unlike NeoForge). Removed from file +holding server-side config (same as NeoForge). + +Add option in client-config to set battle/silly music volume, and an option for +whether or not battle/silly music volume is affected by global music volume +setting and whether or not it is affected by master volume setting. + +Proper volume handling (like in the NeoForge branch). + +Added Armadillo, Bogged, and Breeze to mob list in config. + # Version NeoForge-1.26.0 Make it possible to open the client-config from the Mod-list GUI. diff --git a/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java b/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java index f35e9d9..badd885 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.25.2"; + public static final String VERSION = "1.26.0"; 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/";