the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 18 lines 453 B view raw
1#include "stdafx.h" 2#include "net.minecraft.world.level.tile.h" 3#include "BiomeDecorator.h" 4#include "BeachBiome.h" 5 6BeachBiome::BeachBiome(int id) : Biome(id) 7{ 8 // remove default mob spawn settings 9 friendlies.clear(); 10 friendlies_chicken.clear(); // 4J added 11 topMaterial = (byte) Tile::sand_Id; 12 material = (byte) Tile::sand_Id; 13 14 decorator->treeCount = -999; 15 decorator->deadBushCount = 0; 16 decorator->reedsCount = 0; 17 decorator->cactusCount = 0; 18}