mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 06:03:37 +00:00
17 lines
514 B
C++
17 lines
514 B
C++
#include "../../Platform/stdafx.h"
|
|
#include "../../Headers/net.minecraft.world.level.tile.h"
|
|
#include "BiomeDecorator.h"
|
|
#include "BeachBiome.h"
|
|
|
|
BeachBiome::BeachBiome(int id) : Biome(id) {
|
|
// remove default mob spawn settings
|
|
friendlies.clear();
|
|
friendlies_chicken.clear(); // 4J added
|
|
topMaterial = (uint8_t)Tile::sand_Id;
|
|
material = (uint8_t)Tile::sand_Id;
|
|
|
|
decorator->treeCount = -999;
|
|
decorator->deadBushCount = 0;
|
|
decorator->reedsCount = 0;
|
|
decorator->cactusCount = 0;
|
|
} |