mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 03:13:36 +00:00
10 lines
309 B
C++
10 lines
309 B
C++
#include "../../Platform/stdafx.h"
|
|
#include "../../Headers/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;
|
|
} |