From 5e6c346c7c69d0f902223c0dae65265258a67608 Mon Sep 17 00:00:00 2001 From: Lex Manos Date: Wed, 14 May 2014 12:20:04 -0700 Subject: [PATCH] In Flower Forest biome a Poppy should spawn instead of Blue Orchid Closes #1078 --- .../net/minecraft/world/biome/BiomeGenForest.java.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/minecraft/net/minecraft/world/biome/BiomeGenForest.java.patch b/patches/minecraft/net/minecraft/world/biome/BiomeGenForest.java.patch index 749a391bb..9645e31b1 100644 --- a/patches/minecraft/net/minecraft/world/biome/BiomeGenForest.java.patch +++ b/patches/minecraft/net/minecraft/world/biome/BiomeGenForest.java.patch @@ -18,7 +18,7 @@ + this.flowers.clear(); + for (int x = 0; x < BlockFlower.field_149859_a.length; x++) + { -+ this.addFlower(Blocks.field_150328_O, x, 10); ++ this.addFlower(Blocks.field_150328_O, x == 1 ? 0 : x, 10); + } + } }