]> git.seodisparate.com - TurnBasedMinecraftMod/commitdiff
Fix potential server crash bug
authorStephen Seo <seo.disparate@gmail.com>
Fri, 13 Nov 2020 02:41:36 +0000 (11:41 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Fri, 13 Nov 2020 02:41:36 +0000 (11:41 +0900)
build.gradle
src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java
src/main/resources/META-INF/mods.toml

index 71ce89a985fa3ee17fea4ea9e5ad6a83db4ef4f5..112e2b0b361f41cedad1139488c049a5b7cea528 100644 (file)
@@ -14,7 +14,7 @@ apply plugin: 'eclipse'
 //apply plugin: 'maven-publish'\r
 apply plugin: 'com.github.johnrengelman.shadow'\r
 \r
-version = "1.11"\r
+version = "1.12"\r
 group = "com.burnedkirby.TurnBasedMinecraft"\r
 archivesBaseName = "TurnBasedMinecraft"\r
 \r
index 5e7748a1e5914962da81ce5e00d1b81416ad0f79..b2d25ed745fd49d87776e44aa12a221c461d20c3 100644 (file)
@@ -9,7 +9,6 @@ import com.mojang.brigadier.arguments.IntegerArgumentType;
 import com.mojang.brigadier.arguments.StringArgumentType;
 import com.mojang.brigadier.exceptions.CommandSyntaxException;
 import com.mojang.brigadier.exceptions.SimpleCommandExceptionType;
-import net.minecraft.client.Minecraft;
 import net.minecraft.command.Commands;
 import net.minecraft.command.arguments.EntityArgument;
 import net.minecraft.entity.player.ServerPlayerEntity;
@@ -36,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.11";
+    public static final String VERSION = "1.12";
     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 64c23b6f072280d6d5cb4b0752b7a075f4d0f1e1..a2f047545b57e9e8ecd4d7350477b0d75f46f0ab 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.11" #mandatory
+version="1.12" #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>