3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-08 13:52:50 +02:00

18w07c - Fix some inventory issues + mappings, thanks Gerrygames

Dieser Commit ist enthalten in:
creeper123123321 2018-02-18 05:53:57 -03:00
Ursprung 34cba80fd8
Commit 00dedaa1ff

Datei anzeigen

@ -139,6 +139,7 @@ public class WorldPackets {
Chunk1_9_3_4Type type = new Chunk1_9_3_4Type(clientWorld);
Chunk1_13Type type1_13 = new Chunk1_13Type(clientWorld);
Chunk chunk = wrapper.read(type);
wrapper.write(type1_13,chunk);
for (int i = 0; i < chunk.getSections().length; i++) {
ChunkSection section = chunk.getSections()[i];
@ -183,7 +184,6 @@ public class WorldPackets {
chunk.getSections()[y >> 4].setFlatBlock(x, y, z, newId);
}
}
wrapper.write(type1_13,chunk);
}
});
}