We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3443b53 + d2a4b73 commit 89e680eCopy full SHA for 89e680e
src/types/biome/chunkgen/BiomeCoordinateData.php
@@ -66,6 +66,12 @@ public static function read(ByteBufferReader $in) : self{
66
}
67
68
public function write(ByteBufferWriter $out) : void{
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);
76
77
0 commit comments