mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-06 05:13:39 +00:00
16 lines
416 B
C++
16 lines
416 B
C++
|
|
#include "minecraft/world/level/biome/PlainsBiome.h"
|
|
|
|
#include <vector>
|
|
|
|
#include "java/Class.h"
|
|
#include "minecraft/world/level/biome/Biome.h"
|
|
#include "minecraft/world/level/biome/BiomeDecorator.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;
|
|
} |