Skip to content

Commit

Permalink
don't reference mantle's copy of the names
Browse files Browse the repository at this point in the history
  • Loading branch information
progwml6 committed Feb 7, 2014
1 parent 4a59b2f commit bde810c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -22,7 +22,7 @@ public SlimeTallGrassItem(Block b)
@SideOnly(Side.CLIENT)
public IIcon getIconFromDamage (int meta)
{
int arr = MathHelper.clamp_int(meta, 0, this.blockType.length);
int arr = MathHelper.clamp_int(meta, 0, this.blockTypes.length);
return TRepo.slimeTallGrass.getIcon(0, arr);
}

Expand Down

0 comments on commit bde810c

Please sign in to comment.