Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 04:20:06 +01:00
Merge branch 'breaking' into breaking-114
Dieser Commit ist enthalten in:
Commit
71a9256617
@ -570,7 +570,10 @@ public class BukkitChunk_1_13 extends IntFaweChunk<Chunk, BukkitQueue_1_13> {
|
|||||||
for (Map.Entry<BlockPosition, TileEntity> entry : toRemove.entrySet()) {
|
for (Map.Entry<BlockPosition, TileEntity> entry : toRemove.entrySet()) {
|
||||||
BlockPosition bp = entry.getKey();
|
BlockPosition bp = entry.getKey();
|
||||||
TileEntity tile = entry.getValue();
|
TileEntity tile = entry.getValue();
|
||||||
nmsWorld.n(bp);
|
tile.y();
|
||||||
|
// nmsWorld.c.remove(bp);
|
||||||
|
// nmsWorld.tileEntityList.remove(bp);
|
||||||
|
// nmsWorld.tileEntityListTick.remove(bp);
|
||||||
tiles.remove(bp);
|
tiles.remove(bp);
|
||||||
tile.z();
|
tile.z();
|
||||||
tile.invalidateBlockCache();
|
tile.invalidateBlockCache();
|
||||||
|
@ -183,9 +183,20 @@ public class SpongeSchematicReader extends NBTSchematicReader {
|
|||||||
setupClipboard(0, uuid);
|
setupClipboard(0, uuid);
|
||||||
}
|
}
|
||||||
int[] pos = value.getIntArray("Pos");
|
int[] pos = value.getIntArray("Pos");
|
||||||
int x = pos[0];
|
int x,y,z;
|
||||||
int y = pos[1];
|
if (pos.length != 3) {
|
||||||
int z = pos[2];
|
System.out.println("Invalid tile " + value);
|
||||||
|
if (!value.containsKey("x") || !value.containsKey("y") || !value.containsKey("z")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
x = value.getInt("x");
|
||||||
|
y = value.getInt("y");
|
||||||
|
z = value.getInt("z");
|
||||||
|
} else {
|
||||||
|
x = pos[0];
|
||||||
|
y = pos[1];
|
||||||
|
z = pos[2];
|
||||||
|
}
|
||||||
fc.setTile(x, y, z, value);
|
fc.setTile(x, y, z, value);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren