]> git.seodisparate.com - TurnBasedMinecraftMod/commitdiff
Bump version to 1.25.2
authorStephen Seo <seo.disparate@gmail.com>
Wed, 17 Jan 2024 05:17:03 +0000 (14:17 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Wed, 17 Jan 2024 05:17:03 +0000 (14:17 +0900)
Changelog.md
README.md
gradle.properties
src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java

index e6490baa1be5a9586022b17ce7a14b7d0e4e89ed..23ddcbf1ce1524795941fcf13f4f16bf1afa47ca 100644 (file)
@@ -1,5 +1,14 @@
 # Upcoming changes
 
+# Version Forge-1.25.2
+
+Fix invalid use of throwable potions. (Previously, the Player would "drink"
+splash/lingering potions when used.) Now, if a splash/lingering potion is
+"Use"d in battle, it will be thrown.
+
+Add experimental support for "right-click" of arbitrary items on hotbar when
+"Use" is used in battle.
+
 # Version Forge-1.25.1
 
 Add icon for mod in Mod list description.
index 81a677c7ac75d4e6df88f3acec0467b85d5ef8b1..6cd0563fc95823a0b6a95537b126a54595bb5286 100644 (file)
--- a/README.md
+++ b/README.md
@@ -72,7 +72,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.25.1-all.jar`
+`build/libs/TurnBasedMinecraft-Forge-1.25.2-all.jar`
 
 # Reproducibility
 
index 43dccc0fbc7bcd163868419b0a94305e2d4216cf..efaa773d1f541c4a0c20e3c6d6e33634ae72d479 100644 (file)
@@ -44,7 +44,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.25.1
+mod_version=1.25.2
 # 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
index 360e3d305d427c3b87cba4d917de5772c7dd6aaf..96e065fd41adce1e7f30528244b5ab57fa55b596 100644 (file)
@@ -37,7 +37,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.1";
+    public static final String VERSION = "1.25.2";
     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/";