the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 22 lines 562 B view raw
1#include "stdafx.h" 2#include "TaigaBiome.h" 3#include "net.minecraft.world.entity.animal.h" 4#include "net.minecraft.world.level.levelgen.feature.h" 5#include "net.minecraft.world.level.biome.h" 6 7TaigaBiome::TaigaBiome(int id) : Biome(id) 8{ 9 friendlies_wolf.push_back(new MobSpawnerData(eTYPE_WOLF, 8, 4, 4)); // 4J - moved to their own category 10 11 decorator->treeCount = 10; 12 decorator->grassCount = 1; 13} 14 15Feature *TaigaBiome::getTreeFeature(Random *random) 16{ 17 if (random->nextInt(3) == 0) 18 { 19 return new PineFeature(); 20 } 21 return new SpruceFeature(false); 22}