Some small changes to the gui code

This commit is contained in:
modmuss50 2015-06-17 11:14:46 +01:00
parent 90be01753b
commit 74525d260a
2 changed files with 10 additions and 2 deletions

View file

@ -39,7 +39,7 @@ public class ListBoxElementText implements IListBoxElement
public void draw(ElementListBox listBox, int x, int y, int backColor, int textColor)
{
listBox.getFontRenderer().drawStringWithShadow(_text, x, y, textColor);
Minecraft.getMinecraft().fontRenderer.drawString(_text, x, y, textColor);
}
}