This commit is contained in:
Jesse Boyd 2017-06-19 14:15:09 +10:00
parent b2261bb9e2
commit 693963a0f3
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
2 changed files with 4 additions and 1 deletions

View File

@ -28,7 +28,7 @@ ext {
date = git.head().date.format("yy.MM.dd")
revision = "-${git.head().abbreviatedId}"
parents = git.head().parentIds;
index = -92; // Offset to match CI
index = -93; // Offset to match CI
int major, minor, patch;
major = minor = patch = 0;
for (;parents != null && !parents.isEmpty();index++) {

View File

@ -184,6 +184,7 @@ public class StructureFormat implements ClipboardReader, ClipboardWriter {
ArrayList<HashMap<String, Object>> palette = new ArrayList<>();
for (Vector point : region) {
BaseBlock block = clipboard.getBlock(point);
if (block.getId() == 217) block = FaweCache.getBlock(0, 0); // Void
int combined = FaweCache.getCombined(block);
int index = indexes[combined];
if (index != -1) {
@ -221,7 +222,9 @@ public class StructureFormat implements ClipboardReader, ClipboardWriter {
Vector min = region.getMinimumPoint();
for (Vector point : region) {
BaseBlock block = clipboard.getBlock(point);
if (block.getId() == 217) block = FaweCache.getBlock(0, 0); // Void
int combined = FaweCache.getCombined(block);
if (combined >> 4 == 217) combined = 0; // Structure void
int index = indexes[combined];
List<Integer> pos = Arrays.asList((int) (point.getX() - min.getX()), (int) (point.getY() - min.getY()), (int) (point.getZ() - min.getZ()));
if (!block.hasNbtData()) {