]> git.seodisparate.com - TurnBasedMinecraftMod/commitdiff
Version 1.17.2.2 1.17.2.2
authorStephen Seo <seo.disparate@gmail.com>
Thu, 1 Sep 2022 12:26:29 +0000 (21:26 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Thu, 1 Sep 2022 12:26:29 +0000 (21:26 +0900)
Changelog.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 640c4152bced70fc8e1a0610a708ad75534dd278..ac59516b6e86896994cf7fe406bf32e23d137de8 100644 (file)
@@ -1,5 +1,9 @@
 # Upcoming changes
 
+# Version 1.17.2.2
+
+Fix potential NullPointerException crash bug.
+
 # Version 1.17.2.1
 
 Attempt to fix CustomNPCs mods not damaging players in TurnBased combat.
index 4a08ba6e8a7649de2d2e3399785fd03eb10b5dea..8c166ef8827b1c649c690f344471c997aacf4151 100644 (file)
@@ -14,7 +14,7 @@ apply plugin: 'eclipse'
 //apply plugin: 'maven-publish'\r
 apply plugin: 'com.github.johnrengelman.shadow'\r
 \r
-version = "1.17.2.1"\r
+version = "1.17.2.2"\r
 group = "com.burnedkirby.TurnBasedMinecraft"\r
 archivesBaseName = "TurnBasedMinecraft"\r
 \r
index 6961c96f000b9b275e8442283de1779201623a9e..0156ecbb3eae34ca57368955cca6be9fe593f714 100644 (file)
@@ -35,7 +35,7 @@ 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.17.2.1";
+    public static final String VERSION = "1.17.2.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/";
index 0cc41ecdb92d15b279cff1c6afbd1e91eb1e46a4..42ad09c64313e62a61718acaadc0a72c5031b713 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.17.2.1" #mandatory
+version="1.17.2.2" #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 9080c1545ddddc7f17187a1bb09c0d5098a7a677..ec39ab870f9dd53c3609122b055f343bfcf4311b 100644 (file)
@@ -3,7 +3,7 @@
   "modid": "com_burnedkirby_turnbasedminecraft",
   "name": "Turn Based Minecraft",
   "description": "Changes battles to be turn-based.",
-  "version": "1.17.2.1",
+  "version": "1.17.2.2",
   "mcversion": "1.16.3",
   "url": "",
   "updateUrl": "",