Merge pull request #893 from CatDany/patch-2

Tome rendering on Fast looks weird. Fixes #892
This commit is contained in:
Pahimar 2015-05-27 21:54:19 -04:00
commit f0cafcc763
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public class TileEntityRendererResearchStation extends TileEntitySpecialRenderer
GL11.glPushMatrix();
ItemStack tome = tileEntityResearchStation.getStackInSlot(TileEntityResearchStation.TOME_SLOT_INVENTORY_INDEX);
if (tome != null)
if (Minecraft.getMinecraft().gameSettings.fancyGraphics && tome != null)
{
EntityItem ghostEntityItem = new EntityItem(tileEntityResearchStation.getWorldObj());
ghostEntityItem.hoverStart = 0.0F;