Fixed #10591
This commit is contained in:
@@ -558,7 +558,7 @@ public class Schematics implements Loadable{
|
|||||||
}
|
}
|
||||||
|
|
||||||
IntMap<Block> blocks = new IntMap<>();
|
IntMap<Block> blocks = new IntMap<>();
|
||||||
byte length = stream.readByte();
|
int length = stream.readUnsignedByte();
|
||||||
for(int i = 0; i < length; i++){
|
for(int i = 0; i < length; i++){
|
||||||
String name = stream.readUTF();
|
String name = stream.readUTF();
|
||||||
Block block = Vars.content.getByName(ContentType.block, SaveFileReader.fallback.get(name, name));
|
Block block = Vars.content.getByName(ContentType.block, SaveFileReader.fallback.get(name, name));
|
||||||
|
|||||||
Reference in New Issue
Block a user