]> git.seodisparate.com - TurnBasedMinecraftMod/commitdiff
Version 1.4 1.4
authorStephen Seo <seo.disparate@gmail.com>
Thu, 18 Oct 2018 07:28:47 +0000 (16:28 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Thu, 18 Oct 2018 07:28:47 +0000 (16:28 +0900)
Changelog.md
build.gradle
src/main/java/com/seodisparate/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java

index dfddcec49d80efbd322f19f78901744a786df70d..9c3e97d3d6bc957acafb669b5d4b7d061629b5d6 100644 (file)
@@ -1,3 +1,12 @@
+# Version 1.4
+
+Fix duplicate "... entered battle" messages.
+
+Added max-distance config option for how close a monster must be to initiate
+battle (when triggered by a monster targeting a player or entity in battle).
+
+Some internal fixes and refactorings.
+
 # Version 1.3
 
 Added a battle-cooldown and related config option. Now, when leaving battle, a
index 2c0d145d228e04bf89fcc56bec4a9e9f34646d95..9c520aebb7667db12023219f517a2d52d772cf63 100644 (file)
@@ -10,7 +10,7 @@ buildscript {
 apply plugin: 'net.minecraftforge.gradle.forge'\r
 //Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.\r
 \r
-version = "1.3"\r
+version = "1.4"\r
 group = "com.seodisparate.TurnBasedMinecraft" // http://maven.apache.org/guides/mini/guide-naming-conventions.html\r
 archivesBaseName = "TurnBasedMinecraft"\r
 \r
index 29bc32f4c99e899067dee0f983b84c913219f493..a245a646ed9693c9e166096e08c4c397bee6e267 100644 (file)
@@ -26,7 +26,7 @@ public class TurnBasedMinecraftMod
 {
     public static final String MODID = "com.seodisparate.turnbasedminecraft";
     public static final String NAME = "Turn Based Minecraft Mod";
-    public static final String VERSION = "1.3";
+    public static final String VERSION = "1.4";
     public static final String CONFIG_FILENAME = "TBM_Config.xml";
     public static final String CONFIG_DIRECTORY = "config/TurnBasedMinecraft/";
     public static final String CONFIG_FILE_PATH = CONFIG_DIRECTORY + CONFIG_FILENAME;