blob: e26c664b112dd2da44a24b7492f6bd3004f20192 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "stdafx.h"
#include "net.minecraft.world.level.biome.h"
PlainsBiome::PlainsBiome(int id) : Biome(id)
{
decorator->treeCount = -999;
decorator->flowerCount = 4;
decorator->grassCount = 10;
}
|