Skip to content

Commit 89e680e

Browse files
committed
Merge branch 'master' into ext-encoding
2 parents 3443b53 + d2a4b73 commit 89e680e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/types/biome/chunkgen/BiomeCoordinateData.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ public static function read(ByteBufferReader $in) : self{
6666
}
6767

6868
public function write(ByteBufferWriter $out) : void{
69-
69+
VarInt::writeSignedInt($out, $this->minValueType);
70+
LE::writeSignedShort($out, $this->minValue);
71+
VarInt::writeSignedInt($out, $this->maxValueType);
72+
LE::writeSignedShort($out, $this->maxValue);
73+
LE::writeUnsignedInt($out, $this->gridOffset);
74+
LE::writeUnsignedInt($out, $this->gridStepSize);
75+
VarInt::writeSignedInt($out, $this->distribution);
7076
}
7177
}

0 commit comments

Comments
 (0)