Fixed Entity Item render helper

This commit is contained in:
CovertJaguar 2012-09-17 00:25:26 -07:00
parent e1c2a20e98
commit eb897fa9a9
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ public class ForgeHooksClient
int size = entity.item.stackSize;
int count = (size > 20 ? 4 : (size > 5 ? 3 : (size > 1 ? 2 : 1)));
for(int j = 0; j < size; j++)
for(int j = 0; j < count; j++)
{
GL11.glPushMatrix();
if (j > 0)