3 Commits

Author SHA1 Message Date
ae5a3b3557 2.8.15
- API update to Minecraft version 1.20
- T2CodeLib API update to 15.0 (this version is required from now on)
2023-06-08 07:02:06 +02:00
367f1e32f4 Small bugfix 2023-04-23 13:25:14 +02:00
JaTiTV
feed3914b0 „.gitea/ISSUE_TEMPLATE/feature_request.md“ ändern 2022-12-31 20:29:32 +00:00
4 changed files with 12 additions and 9 deletions

View File

@@ -6,7 +6,7 @@
<groupId>net.t2code</groupId>
<artifactId>CommandGUI_V2</artifactId>
<version>2.8.14</version>
<version>2.8.15</version>
<packaging>jar</packaging>
<name>CommandGUI</name>
@@ -75,7 +75,7 @@
<dependency>
<groupId>net.t2code</groupId>
<artifactId>T2CodeLib</artifactId>
<version>13.4</version>
<version>15.0</version>
</dependency>
<dependency>
<groupId>net.t2code</groupId>

View File

@@ -76,6 +76,7 @@ public class CmdExecuter_GUI implements CommandExecutor, TabCompleter {
break;
}
} else {
if (!args[0].equalsIgnoreCase("updateinfo")){
if (sender instanceof Player) {
Player player = (Player) sender;
Commands.gui(player, args[0]);
@@ -83,6 +84,8 @@ public class CmdExecuter_GUI implements CommandExecutor, TabCompleter {
}
Help.sendHelp(sender, prefix);
}
}
}
return false;

View File

@@ -7,7 +7,7 @@ public class Util {
}
public static String getRequiredT2CodeLibVersion() {
return "13.4";
return "15.0";
}
public static String getPrefix() {