3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-05 11:00:05 +01:00

Fix loading schematic files with block data values >127

Minecraft 1.3 introduces several blocks with data values
over 127, such as sandstone stairs (128).  Since byte
is signed, implicit conversion to short results in
negative block data values that cause later IndexOutOfBounds
exceptions.  This change explicitly masks off the extended
sign bits so the result is positive.
Dieser Commit ist enthalten in:
snaxson 2012-08-05 22:41:48 -07:00 committet von TomyLobo
Ursprung 5e4c809f66
Commit 00e6a3aa65

Datei anzeigen

@ -121,7 +121,7 @@ public class MCEditSchematicFormat extends SchematicFormat {
}
} else {
for (int i = 0; i < rawBlocks.length; ++i) {
blocks[i] = rawBlocks[i];
blocks[i] = (short) (rawBlocks[i] & 0xFF);
}
}