summaryrefslogtreecommitdiffstats
path: root/nms-patches/CommandGamerule.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/CommandGamerule.patch')
-rw-r--r--nms-patches/CommandGamerule.patch14
1 files changed, 6 insertions, 8 deletions
diff --git a/nms-patches/CommandGamerule.patch b/nms-patches/CommandGamerule.patch
index 30d67f7f..d8e46441 100644
--- a/nms-patches/CommandGamerule.patch
+++ b/nms-patches/CommandGamerule.patch
@@ -1,13 +1,11 @@
---- ../work/decompile-8eb82bde/net/minecraft/server/CommandGamerule.java 2014-12-10 16:21:38.404579167 +0000
-+++ src/main/java/net/minecraft/server/CommandGamerule.java 2014-12-10 16:18:45.268581046 +0000
-@@ -19,8 +19,8 @@
- return "commands.gamerule.usage";
+--- /home/matt/mc-dev-private//net/minecraft/server/CommandGamerule.java 2015-02-26 22:40:22.363608142 +0000
++++ src/main/java/net/minecraft/server/CommandGamerule.java 2015-02-26 22:40:22.363608142 +0000
+@@ -20,7 +20,7 @@
}
-- public void execute(ICommandListener icommandlistener, String[] astring) {
+ public void execute(ICommandListener icommandlistener, String[] astring) throws CommandException {
- GameRules gamerules = this.d();
-+ public void execute(ICommandListener icommandlistener, String[] astring) throws CommandException { // CraftBukkit - added throws
-+ GameRules gamerules = icommandlistener.getWorld().getGameRules(); // Use current world
++ GameRules gamerules = icommandlistener.getWorld().getGameRules(); // CraftBukkit - Use current world
String s = astring.length > 0 ? astring[0] : "";
String s1 = astring.length > 1 ? a(astring, 1) : "";
@@ -18,7 +16,7 @@
+
+ // CraftBukkit start - fix decompile error
+ @Override
-+ public int compareTo(Object o) {
++ public int compareTo(ICommand o) {
+ return a((ICommand) o);
+ }
+ // CraftBukkit end