Files
LegacyRenouveau/Minecraft.World/StoneBeachBiome.cpp
T
2026-07-02 21:09:39 -04:00

19 lines
500 B
C++

#include "stdafx.h"
#include "StoneBeachBiome.h"
#include "net.minecraft.world.level.tile.h"
#include "BiomeDecorator.h"
StoneBeachBiome::StoneBeachBiome(int id) : Biome(id)
{
this->topMaterial = static_cast<byte>(Tile::stone_Id);
this->topMaterialData = 0;
this->material = static_cast<byte>(Tile::stone_Id);
this->materialData = 0;
if (decorator != nullptr)
{
decorator->treeCount = 0;
decorator->grassCount = 0;
decorator->flowerCount = 0;
}
}