the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "Biome.h"
4
5class RiverBiome : public Biome
6{
7public:
8 RiverBiome(int id) : Biome(id)
9 {
10 friendlies.clear();
11 friendlies_chicken.clear(); // 4J added since chicken now separated from main friendlies
12 friendlies_wolf.clear(); // 4J added since wolf now separated from main friendlies
13 }
14};