2026-03-01 12:16:08 +08:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "net.minecraft.world.level.biome.h"
|
|
|
|
|
|
|
|
|
|
PlainsBiome::PlainsBiome(int id) : Biome(id)
|
|
|
|
|
{
|
2026-03-01 11:00:23 -06:00
|
|
|
friendlies.push_back(new MobSpawnerData(eTYPE_HORSE, 5, 2, 6));
|
|
|
|
|
|
2026-03-01 12:16:08 +08:00
|
|
|
decorator->treeCount = -999;
|
|
|
|
|
decorator->flowerCount = 4;
|
|
|
|
|
decorator->grassCount = 10;
|
|
|
|
|
}
|