Skip to content

Commit

Permalink
Fix crash when some random people got slimesaplings with metadata. Y …
Browse files Browse the repository at this point in the history
…u do dis, people.
  • Loading branch information
bonii-xx committed Sep 23, 2014
1 parent cbdbabd commit 9d8e812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/blocks/slime/SlimeSapling.java
Expand Up @@ -72,7 +72,7 @@ public void updateTick (World world, int x, int y, int z, Random random)
@SideOnly(Side.CLIENT)
public IIcon getIcon (int side, int meta)
{
return icons[meta % 8];
return icons[meta % icons.length];
}

@Override
Expand Down

0 comments on commit 9d8e812

Please sign in to comment.