Skip to content

Commit 000341d

Browse files
committed
Support newest world format
apparently I messed up the blockstate data version last time around... it hasn't changed since 1.21.60
1 parent a5d88ab commit 000341d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/data/bedrock/block/BlockStateData.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ final class BlockStateData{
4545
public const CURRENT_VERSION =
4646
(1 << 24) | //major
4747
(21 << 16) | //minor
48-
(70 << 8) | //patch
49-
(1); //revision
48+
(60 << 8) | //patch
49+
(33); //revision
5050

5151
public const TAG_NAME = "name";
5252
public const TAG_STATES = "states";

src/world/format/io/data/BedrockWorldData.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
class BedrockWorldData extends BaseNbtWorldData{
5252

5353
public const CURRENT_STORAGE_VERSION = 10;
54-
public const CURRENT_STORAGE_NETWORK_VERSION = 786;
54+
public const CURRENT_STORAGE_NETWORK_VERSION = 800;
5555
public const CURRENT_CLIENT_VERSION_TARGET = [
5656
1, //major
5757
21, //minor
58-
70, //patch
58+
80, //patch
5959
3, //revision
6060
0 //is beta
6161
];

0 commit comments

Comments
 (0)