From 446e74791fb20d72acce8ec3908915cb186a8a39 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 18 Jun 2020 23:18:11 +0200 Subject: [PATCH] Add Minecraft 1.16 biomes These are Nether biomes. We still add them for completeness. --- src/Resource/Biome.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Resource/Biome.cpp b/src/Resource/Biome.cpp index ed29129..2b20da4 100644 --- a/src/Resource/Biome.cpp +++ b/src/Resource/Biome.cpp @@ -361,6 +361,10 @@ const Biome *const BIOMES[256] = { /* 167 */ &BiomeBadlands, /* Modified Badlands Plateau */ /* 168 */ &BiomeJungle, /* Bamboo Jungle */ /* 169 */ &BiomeJungle, /* Bamboo Jungle Hills */ + /* 170 */ &BiomeDesert, /* Soul Sand Valley */ + /* 171 */ &BiomeDesert, /* Crimson Forest */ + /* 172 */ &BiomeDesert, /* Warped Forest */ + /* 173 */ &BiomeDesert, /* Basalt Deltas */ }; }