Shorter border teleportation

This commit is contained in:
Jesse Boyd
2016-12-10 00:44:42 +11:00
parent bec11b244e
commit 9fc464e896
2 changed files with 5 additions and 5 deletions

View File

@ -698,7 +698,7 @@ public abstract class PlotArea {
public int getBorder() {
Integer meta = (Integer) getMeta("worldBorder");
if (meta != null) {
int border = meta + 16;
int border = meta + 1;
if (border == 0) {
return Integer.MAX_VALUE;
} else {