neoLegacy/Minecraft.World/StoneBeachBiome.cpp
Lord_Cambion 2ed917481d feat: stone beach
not implemented yet
2026-05-16 12:45:17 +02:00

19 lines
467 B
C++

#include "stdafx.h"
#include "net.minecraft.world.level.tile.h"
#include "BiomeDecorator.h"
#include "StoneBeachBiome.h"
StoneBeachBiome::StoneBeachBiome(int id) : Biome(id)
{
topMaterial = static_cast<byte>(Tile::stone_Id);
material = static_cast<byte>(Tile::stone_Id);
depth = 1;
scale = 1;
decorator->treeCount = -999;
decorator->deadBushCount = 0;
decorator->reedsCount = 0;
decorator->cactusCount = 0;
}