3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-10-03 04:10:06 +02:00

Fixed NullPointerException in Spline and Sweep brush

Dieser Commit ist enthalten in:
Hazel Trinity 2020-08-14 19:04:11 -07:00
Ursprung 4041b2aa1d
Commit b7e9547cd5
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -46,7 +46,7 @@ public class SweepBrush implements Brush, ResettableTool {
return;
}
boolean newPos = !position.equals(this.position);
boolean newPos = this.position == null || !position.equals(this.position);
this.position = position;
Player player = editSession.getPlayer();
if (player == null) {

Datei anzeigen

@ -104,7 +104,7 @@ public abstract class DFSVisitor implements Operation {
from.getZ() + direction.getZ());
if (isVisitable(bv, bv2)) {
Node adjacent = new Node(bv2.getBlockX(), bv2.getBlockY(), bv2.getBlockZ());
if (!adjacent.equals(current.from)) {
if (current.from == null || !adjacent.equals(current.from)) {
AtomicInteger adjacentCount = visited.get(adjacent);
if (adjacentCount == null) {
if (countAdd++ < maxBranch) {