Fixed the Sacred Springs' color, changed formatting for Biome Radar tooltip

This commit is contained in:
Matt Caughey 2014-01-28 10:04:56 -05:00
parent 80b1be1bde
commit cbade96c3c
2 changed files with 3 additions and 2 deletions

View File

@ -27,6 +27,7 @@ public class BiomeGenSacredSprings extends BOPBiome
//TODO: setHeight()
this.func_150570_a(biomeHeight);
this.setColor(39259);
this.spawnableMonsterList.add(new BiomeGenBase.SpawnListEntry(EntityJungleSpider.class, 12, 6, 6));

View File

@ -150,8 +150,8 @@ public class ItemBiomeFinder extends Item
{
boolean foundBiome = itemStack.getTagCompound().getBoolean("foundBiome");
if (foundBiome) infoList.add(EnumChatFormatting.RED + "Found biome");
else infoList.add("Right Click to Find Biome");
if (foundBiome) infoList.add(EnumChatFormatting.DARK_GREEN + "Found biome!");
else infoList.add(EnumChatFormatting.DARK_GRAY + "Right click to find biome");
}
}
}