From d0213f99ac401ad3b2be9d3234300f8765bbb12d Mon Sep 17 00:00:00 2001 From: Dylan T Date: Fri, 2 Oct 2020 12:24:18 +0100 Subject: [PATCH] MountainsBiome: fix error from stale PR merge --- src/world/biome/MountainsBiome.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/biome/MountainsBiome.php b/src/world/biome/MountainsBiome.php index fb820034e..47986a8aa 100644 --- a/src/world/biome/MountainsBiome.php +++ b/src/world/biome/MountainsBiome.php @@ -45,7 +45,7 @@ class MountainsBiome extends GrassyBiome{ $ores = new Ore(); $ores->setOreTypes([ - new OreType(VanillaBlocks::EMERALD_ORE(), 11, 1, 0, 32) + new OreType(VanillaBlocks::EMERALD_ORE(), VanillaBlocks::STONE(), 11, 1, 0, 32) ]); $this->addPopulator($ores);