Minecraft by default only uses the World at index 0 for the WorldBorder command. This fixes SPIGOT-12

By: Fabian Faßbender <fabian.fassbender42@googlemail.com>
This commit is contained in:
CraftBukkit/Spigot
2014-11-29 00:38:21 +01:00
parent 827be39e55
commit 6c7602a196
2 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
--- ../work/decompile-8eb82bde//net/minecraft/server/ICommand.java 2014-11-29 00:40:43.197707433 +0000
+++ src/main/java/net/minecraft/server/ICommand.java 2014-11-29 00:40:17.000000000 +0000
@@ -10,7 +10,7 @@
List b();
- void execute(ICommandListener icommandlistener, String[] astring);
+ void execute(ICommandListener icommandlistener, String[] astring) throws ExceptionUsage; // CraftBukkit - Add exception
boolean canUse(ICommandListener icommandlistener);