Where'd that ++ come from? That shouldn't be there.
This commit is contained in:
parent
394495baa6
commit
8c30d67ba2
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ public class Schematic {
|
|||
Block[] blockObjPalette = new Block[blockPalette.length];
|
||||
|
||||
for (int i = 0; i < blockPalette.length; i++) {
|
||||
blockObjPalette[i++] = (Block)Block.blockRegistry.getObject(blockPalette[i]);
|
||||
blockObjPalette[i] = (Block)Block.blockRegistry.getObject(blockPalette[i]);
|
||||
}
|
||||
|
||||
for (int i = 0; i < blockIds.length; i++) {
|
||||
|
|
Loading…
Add table
Reference in a new issue