2018-07-19 19:50:34 +02:00
|
|
|
From f25c458df3c7d564f49697dbdcf59faea5375903 Mon Sep 17 00:00:00 2001
|
2016-03-31 02:50:23 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 30 Mar 2016 19:36:20 -0400
|
|
|
|
Subject: [PATCH] MC Dev fixes
|
|
|
|
|
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperCommand.java b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
|
|
|
index e8f7b7292..a0ebc1eaa 100644
|
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
|
|
|
@@ -234,4 +234,5 @@ public class PaperCommand extends Command {
|
2018-03-23 04:19:59 +01:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
Command.broadcastCommandMessage(sender, ChatColor.GREEN + "Paper config reload complete.");
|
2018-03-23 04:19:59 +01:00
|
|
|
}
|
2018-07-15 03:53:17 +02:00
|
|
|
+
|
2018-03-23 04:19:59 +01:00
|
|
|
}
|
2018-07-19 19:50:34 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockPosition.java b/src/main/java/net/minecraft/server/BlockPosition.java
|
|
|
|
index 002da2a19..121a137f3 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/BlockPosition.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockPosition.java
|
|
|
|
@@ -150,7 +150,7 @@ public class BlockPosition extends BaseBlockPosition {
|
|
|
|
return a(Math.min(blockposition.getX(), blockposition1.getX()), Math.min(blockposition.getY(), blockposition1.getY()), Math.min(blockposition.getZ(), blockposition1.getZ()), Math.max(blockposition.getX(), blockposition1.getX()), Math.max(blockposition.getY(), blockposition1.getY()), Math.max(blockposition.getZ(), blockposition1.getZ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
- public static Iterable<BlockPosition> a(int i, int j, int k, int l, int i1, int j1) {
|
|
|
|
+ public static Iterable<BlockPosition> a(int x0, int y0, int z0, int l, int i1, int j1) {
|
|
|
|
return () -> {
|
|
|
|
return new AbstractIterator() {
|
|
|
|
private boolean g = true;
|
|
|
|
@@ -161,21 +161,21 @@ public class BlockPosition extends BaseBlockPosition {
|
|
|
|
protected BlockPosition a() {
|
|
|
|
if (this.g) {
|
|
|
|
this.g = false;
|
|
|
|
- this.h = i;
|
|
|
|
- this.i = j;
|
|
|
|
- this.j = k;
|
|
|
|
- return new BlockPosition(i, j, k);
|
|
|
|
+ this.h = x0;
|
|
|
|
+ this.i = y0;
|
|
|
|
+ this.j = z0;
|
|
|
|
+ return new BlockPosition(x0, y0, z0);
|
|
|
|
} else if (this.h == l && this.i == i1 && this.j == j1) {
|
|
|
|
return (BlockPosition) this.endOfData();
|
|
|
|
} else {
|
|
|
|
if (this.h < l) {
|
|
|
|
++this.h;
|
|
|
|
} else if (this.i < i1) {
|
|
|
|
- this.h = i;
|
|
|
|
+ this.h = x0;
|
|
|
|
++this.i;
|
|
|
|
} else if (this.j < j1) {
|
|
|
|
- this.h = i;
|
|
|
|
- this.i = j;
|
|
|
|
+ this.h = x0;
|
|
|
|
+ this.i = y0;
|
|
|
|
++this.j;
|
|
|
|
}
|
|
|
|
|
2016-03-31 02:50:23 +02:00
|
|
|
--
|
2018-07-15 03:53:17 +02:00
|
|
|
2.18.0
|
2016-03-31 02:50:23 +02:00
|
|
|
|