Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
18 lines
477 B
C++
18 lines
477 B
C++
#include "stdafx.h"
|
|
#include "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 = static_cast<byte>(Tile::sand_Id);
|
|
material = static_cast<byte>(Tile::sand_Id);
|
|
|
|
decorator->treeCount = -999;
|
|
decorator->deadBushCount = 0;
|
|
decorator->reedsCount = 0;
|
|
decorator->cactusCount = 0;
|
|
} |