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