the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 25 lines 721 B view raw
1#include "stdafx.h" 2#include "MushroomIslandBiome.h" 3#include "BiomeDecorator.h" 4#include "net.minecraft.world.entity.animal.h" 5#include "net.minecraft.world.level.tile.h" 6 7MushroomIslandBiome::MushroomIslandBiome(int id) : Biome(id) 8{ 9 decorator->treeCount = -100; 10 decorator->flowerCount = -100; 11 decorator->grassCount = -100; 12 13 decorator->mushroomCount = 1; 14 decorator->hugeMushrooms = 1; 15 16 topMaterial = (byte) Tile::mycel_Id; 17 18 enemies.clear(); 19 friendlies.clear(); 20 friendlies_chicken.clear(); // 4J added 21 friendlies_wolf.clear(); // 4J added 22 waterFriendlies.clear(); 23 24 friendlies_mushroomcow.push_back(new MobSpawnerData(eTYPE_MUSHROOMCOW, 8, 4, 8)); // 4J moved to own category 25}