Fix indentation in LevelDB saveChunk method

- Correct indentation for putByte and foreach loop calls
- Ensure consistent tab-based indentation throughout the method
This commit is contained in:
Dylan T. 2025-06-27 16:16:56 +00:00
parent 941632bed9
commit 7472c5b73d

View File

@ -783,9 +783,9 @@ class LevelDB extends BaseWorldProvider implements WritableWorldProvider{
$layers[] = $subChunk->getLiquidLayer();
}
$subStream->putByte(count($layers));
$subStream->putByte(count($layers));
foreach($layers as $layer){
foreach($layers as $layer){
$this->serializeBlockPalette($subStream, $layer);
}