geforkt von Mirrors/FastAsyncWorldEdit
Made handling of non-right angles in getDirection() return more relevant errors.
Dieser Commit ist enthalten in:
Ursprung
010a1c84fd
Commit
2f411fa838
@ -1700,9 +1700,13 @@ public class WorldEditController {
|
|||||||
int zm = 0;
|
int zm = 0;
|
||||||
|
|
||||||
LocalPlayer.DIRECTION dir = null;
|
LocalPlayer.DIRECTION dir = null;
|
||||||
|
|
||||||
|
dirStr = dirStr.toLowerCase();
|
||||||
|
boolean wasDetected = false;
|
||||||
|
|
||||||
if (dirStr.equals("me")) {
|
if (dirStr.equals("me")) {
|
||||||
dir = player.getCardinalDirection();
|
dir = player.getCardinalDirection();
|
||||||
|
wasDetected = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dirStr.charAt(0) == 'w' || dir == LocalPlayer.DIRECTION.WEST) {
|
if (dirStr.charAt(0) == 'w' || dir == LocalPlayer.DIRECTION.WEST) {
|
||||||
@ -1718,7 +1722,11 @@ public class WorldEditController {
|
|||||||
} else if (dirStr.charAt(0) == 'd') {
|
} else if (dirStr.charAt(0) == 'd') {
|
||||||
ym -= 1;
|
ym -= 1;
|
||||||
} else {
|
} else {
|
||||||
throw new UnknownDirectionException(dirStr);
|
if (wasDetected) {
|
||||||
|
throw new UnknownDirectionException(dir.name());
|
||||||
|
} else {
|
||||||
|
throw new UnknownDirectionException(dirStr);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return new Vector(xm, ym, zm);
|
return new Vector(xm, ym, zm);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren