Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
453 B · 18 lines
C++
at master
123456789101112131415161718#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 = (byte) Tile::sand_Id; material = (byte) Tile::sand_Id;
decorator->treeCount = -999; decorator->deadBushCount = 0; decorator->reedsCount = 0; decorator->cactusCount = 0;}