From b00f7e71dd3810570f69b03bab528affc4450835 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Mon, 22 Apr 2013 22:48:57 +1000 Subject: [PATCH] Fixed missing texture error --- src/minecraft/biomesoplenty/items/ItemBOPFoliage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minecraft/biomesoplenty/items/ItemBOPFoliage.java b/src/minecraft/biomesoplenty/items/ItemBOPFoliage.java index 3ff0b6ceb..8bb9417d4 100644 --- a/src/minecraft/biomesoplenty/items/ItemBOPFoliage.java +++ b/src/minecraft/biomesoplenty/items/ItemBOPFoliage.java @@ -17,7 +17,7 @@ import cpw.mods.fml.relauncher.SideOnly; public class ItemBOPFoliage extends ItemColored { - private static final String[] foliageTypes = new String[] {"algae", "shortgrass", "mediumgrass", "highgrass", "bush", "sprout", "highgrasstop"}; + private static final String[] foliageTypes = new String[] {"algae", "shortgrass", "mediumgrass", "item_highgrass", "bush", "sprout", "highgrasstop"}; @SideOnly(Side.CLIENT) private Icon[] textures;