mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 11:18:12 +05:00
11 lines
268 B
C++
11 lines
268 B
C++
#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;
|
|
} |