mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
possible NPE fix and add useful debug if it fails
This commit is contained in:
parent
d846bc7a2e
commit
330ab83ece
@ -151,7 +151,9 @@ public class BukkitHybridUtils extends HybridUtils {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
int y = MainUtil.y_loc[i][j];
|
int y = MainUtil.y_loc[i][j];
|
||||||
oldBlocks[y][x][z] = result[i][j];
|
oldBlocks[y][x][z] = result[i][j] != null ?
|
||||||
|
result[i][j] :
|
||||||
|
BlockBucket.withSingle(StringPlotBlock.EVERYTHING);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -169,6 +171,10 @@ public class BukkitHybridUtils extends HybridUtils {
|
|||||||
HashSet<PlotBlock> types = new HashSet<>();
|
HashSet<PlotBlock> types = new HashSet<>();
|
||||||
for (int y = 0; y < 256; y++) {
|
for (int y = 0; y < 256; y++) {
|
||||||
BlockBucket old = oldBlocks[y][x][z];
|
BlockBucket old = oldBlocks[y][x][z];
|
||||||
|
try {
|
||||||
|
if (old == null) {
|
||||||
|
old = BlockBucket.withSingle(StringPlotBlock.EVERYTHING);
|
||||||
|
}
|
||||||
PlotBlock now = newBlocks[y][x][z];
|
PlotBlock now = newBlocks[y][x][z];
|
||||||
if (!old.getBlocks().contains(now)) {
|
if (!old.getBlocks().contains(now)) {
|
||||||
changes[i]++;
|
changes[i]++;
|
||||||
@ -211,6 +217,13 @@ public class BukkitHybridUtils extends HybridUtils {
|
|||||||
}
|
}
|
||||||
types.add(now);
|
types.add(now);
|
||||||
}
|
}
|
||||||
|
} catch (NullPointerException e) {
|
||||||
|
PlotSquared.log(old.toString());
|
||||||
|
PlotSquared.log(x);
|
||||||
|
PlotSquared.log(y);
|
||||||
|
PlotSquared.log(z);
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
variety[i] = types.size();
|
variety[i] = types.size();
|
||||||
i++;
|
i++;
|
||||||
|
Loading…
Reference in New Issue
Block a user