# 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
//apply plugin: 'eclipse'
//apply plugin: 'maven-publish'
-version = "1.18.6"
+version = "1.18.7"
group = "com.burnedkirby.TurnBasedMinecraft"
archivesBaseName = "TurnBasedMinecraft"
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/";
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)
# 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>
"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": "",