]> git.seodisparate.com - TurnBasedMinecraftMod/commitdiff
Bump network protocol version, version to 1.18.7 1.18.7
authorStephen Seo <seo.disparate@gmail.com>
Thu, 21 Jul 2022 05:18:12 +0000 (14:18 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Thu, 21 Jul 2022 05:19:21 +0000 (14:19 +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 dea6f8ca57530bad3d2ca6936396bb4b334412c8..1f7a26128d7080b69400e9c641df2fb7c3fa23ff 100644 (file)
@@ -1,5 +1,10 @@
 # Upcoming changes
 
+# Version 1.18.7
+
+Incremented network channel's protocol version to 2, because a packet's format
+was changed in the previous version.
+
 # Version 1.18.6
 
 Add server config option to disable the turn timer (recommended to not disable
index 599d054d1bed459908c0a8f9f0646cec0b3a286f..614b3fdfb1aa0c7918962dd4a789dd8fda3d95f8 100644 (file)
@@ -14,7 +14,7 @@ apply plugin: 'net.minecraftforge.gradle'
 //apply plugin: 'eclipse'
 //apply plugin: 'maven-publish'
 
-version = "1.18.6"
+version = "1.18.7"
 group = "com.burnedkirby.TurnBasedMinecraft"
 archivesBaseName = "TurnBasedMinecraft"
 
index 3fb55013cc56358f5d6c3de2a059195dcb35289b..b8eb9378b222633941ff1e7685645bf186ff2da0 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.6";
+    public static final String VERSION = "1.18.7";
     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/";
@@ -49,7 +49,7 @@ public class TurnBasedMinecraftMod {
     public static final String MUSIC_SILLY = MUSIC_ROOT + "silly/";
     public static final String MUSIC_BATTLE = MUSIC_ROOT + "battle/";
 
-    private static final String PROTOCOL_VERSION = Integer.toString(1);
+    private static final String PROTOCOL_VERSION = Integer.toString(2);
     private static final ResourceLocation HANDLER_ID = new ResourceLocation(MODID, "main_channel");
     private static final SimpleChannel HANDLER = NetworkRegistry.ChannelBuilder
         .named(HANDLER_ID)
index b2f3cee1e9a24b0b698660d5af52076cbf07811e..a601b021dce50481e6e6760d756610740ea699fa 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.6" #mandatory
+version="1.18.7" #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 c877896914907993873ef8a82461a5ee951d4d09..5f6a17fd5da4d42d63c5eb4139d593d352c3f132 100644 (file)
@@ -3,7 +3,7 @@
   "modid": "com_burnedkirby_turnbasedminecraft",
   "name": "Turn Based Minecraft",
   "description": "Changes battles to be turn-based.",
-  "version": "1.18.6",
+  "version": "1.18.7",
   "mcversion": "1.18.2",
   "url": "",
   "updateUrl": "",