mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-01 20:50:41 +01:00
Fix custom chunk generators. Fixes SPIGOT-193.
This commit is contained in:
parent
b6634d7409
commit
53fc3cf74f
1 changed files with 7 additions and 4 deletions
|
@ -64,9 +64,9 @@ public class CustomChunkGenerator extends InternalChunkGenerator {
|
|||
}
|
||||
char[] secBlkID = new char[4096]; // Allocate blk ID bytes
|
||||
short[] bdata = xbtypes[sec];
|
||||
// Loop through data, 2 blocks at a time
|
||||
for (int i = 0; i < bdata.length; i++) {
|
||||
secBlkID[i] = (char) ((int)bdata[i] << 4);
|
||||
Block b = Block.getById(bdata[i]);
|
||||
secBlkID[i] = (char) Block.d.b(b.getBlockData());
|
||||
}
|
||||
// Build chunk section
|
||||
csect[sec] = new ChunkSection(sec << 4, true, secBlkID);
|
||||
|
@ -88,7 +88,8 @@ public class CustomChunkGenerator extends InternalChunkGenerator {
|
|||
|
||||
char[] secBlkID = new char[4096]; // Allocate block ID bytes
|
||||
for (int i = 0; i < secBlkID.length; i++) {
|
||||
secBlkID[i] = (char)(((int) btypes[sec][i]) << 4);
|
||||
Block b = Block.getById(btypes[sec][i]);
|
||||
secBlkID[i] = (char) Block.d.b(b.getBlockData());
|
||||
}
|
||||
csect[sec] = new ChunkSection(sec << 4, true, secBlkID);
|
||||
}
|
||||
|
@ -123,7 +124,9 @@ public class CustomChunkGenerator extends InternalChunkGenerator {
|
|||
cs = csect[sec] = new ChunkSection(sec << 4, true);
|
||||
csbytes = cs.getIdArray();
|
||||
}
|
||||
csbytes[(cy << 8) | (cz << 4) | cx] = (char)((int)blk << 4);
|
||||
|
||||
Block b = Block.getById(blk);
|
||||
csbytes[(cy << 8) | (cz << 4) | cx] = (char) Block.d.b(b.getBlockData());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue