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.
1 parent 920ac29 commit d2a4b73Copy full SHA for d2a4b73
src/types/biome/chunkgen/BiomeCoordinateData.php
@@ -63,6 +63,12 @@ public static function read(PacketSerializer $in) : self{
63
}
64
65
public function write(PacketSerializer $out) : void{
66
-
+ $out->putVarInt($this->minValueType);
67
+ $out->putLShort($this->minValue);
68
+ $out->putVarInt($this->maxValueType);
69
+ $out->putLShort($this->maxValue);
70
+ $out->putLInt($this->gridOffset);
71
+ $out->putLInt($this->gridStepSize);
72
+ $out->putVarInt($this->distribution);
73
74
0 commit comments