]> git.seodisparate.com - TurnBasedMinecraftMod/commitdiff
Mod version 1.18.5 1.18.5
authorStephen Seo <seo.disparate@gmail.com>
Tue, 14 Jun 2022 05:16:51 +0000 (14:16 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Tue, 14 Jun 2022 05:16:51 +0000 (14:16 +0900)
Changelog.md
README.md
build.gradle
src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java
src/main/resources/META-INF/mods.toml
src/main/resources/mcmod.info

index 1aeeb425dbc057de02fb257b1b24f51c4da19c1d..a02a9c62a41014cdf0906fa870f67a1b84d60338 100644 (file)
@@ -1,5 +1,9 @@
 # Upcoming changes
 
+# Version 1.18.5
+
+Fix invalid Battle text output when a Player drinks a potion.
+
 # Version 1.18.4
 
 Fix attacks not hitting due to "invulnerability frames".
index 8a874f1a9007afbf438cae980f6d9769e99b290e..9b116d3b38706123fd86d5d450f81183f82e7d94 100644 (file)
--- a/README.md
+++ b/README.md
@@ -58,7 +58,7 @@ configured for them.)
 # Building
 
 Simply invoke `./gradlew build` in the mod directory and after some time the
-finished jar will be saved at "build/libs/TurnBasedMinecraft-1.18.4.jar"
+finished jar will be saved at "build/libs/TurnBasedMinecraft-1.18.5.jar"
 
 # Other notes
 
index 8898df13de3c21c3f7bb2339693552574c52258b..959074fd051b5324672e83b5f3fbbcc49fa21825 100644 (file)
@@ -14,7 +14,7 @@ apply plugin: 'net.minecraftforge.gradle'
 //apply plugin: 'eclipse'
 //apply plugin: 'maven-publish'
 
-version = "1.18.4"
+version = "1.18.5"
 group = "com.burnedkirby.TurnBasedMinecraft"
 archivesBaseName = "TurnBasedMinecraft"
 
index b7b35ee31b246d7b33c49e7897fa1d38d24a5bc0..9c913816a2644f46ca94533f8f6595a39803d898 100644 (file)
@@ -38,7 +38,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.18.4";
+    public static final String VERSION = "1.18.5";
     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/";
index 6e8ba6138bdbf39bd1ec7ff05627a4c30e2119d2..5157a9fd068fcd76dc30f9e6dc5085bda5bfec6a 100644 (file)
@@ -15,7 +15,7 @@ license="MIT"
 # The modid of the mod
 modId="com_burnedkirby_turnbasedminecraft" #mandatory
 # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
-version="1.18.4" #mandatory
+version="1.18.5" #mandatory
  # A display name for the mod
 displayName="TurnBasedMinecraftMod" #mandatory
 # A URL to query for updates for this mod. See the JSON update specification <here>
index ef97da44450c6fd26317eb6a014c063e679649f4..ddbd50f757600128fecf048483963f31db9d451f 100644 (file)
@@ -3,7 +3,7 @@
   "modid": "com_burnedkirby_turnbasedminecraft",
   "name": "Turn Based Minecraft",
   "description": "Changes battles to be turn-based.",
-  "version": "1.18.4",
+  "version": "1.18.5",
   "mcversion": "1.18.2",
   "url": "",
   "updateUrl": "",