the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 16 lines 338 B view raw
1#include "stdafx.h" 2#include "RainforestBiome.h" 3#include "net.minecraft.world.level.levelgen.feature.h" 4 5RainforestBiome::RainforestBiome(int id) : Biome(id) 6{ 7} 8 9Feature *RainforestBiome::getTreeFeature(Random *random) 10{ 11 if (random->nextInt(3) == 0) 12 { 13 return new BasicTree(false); 14 } 15 return new TreeFeature(false); 16}