mirror of
https://github.com/BluTac10/Xbox-Neo.git
synced 2026-06-05 17:54:38 +00:00
feat: Mesa biomes feat: changed world generation according to java fix: swamp hut changed to spruce
17 lines
405 B
C++
17 lines
405 B
C++
#pragma once
|
|
|
|
#include "Biome.h"
|
|
|
|
class OceanBiome : public Biome
|
|
{
|
|
public:
|
|
OceanBiome(int id) : Biome(id)
|
|
{
|
|
friendlies.clear();
|
|
friendlies_chicken.clear(); // 4J added since chicken now separated from main friendlies
|
|
friendlies_wolf.clear(); // 4J added since wolf now separated from main friendlies
|
|
topMaterial = Tile::gravel_Id; // surfaceblock
|
|
material = Tile::gravel_Id;
|
|
}
|
|
};
|