Skip to content

Commit

Permalink
Fixes Crossbow animation textures
Browse files Browse the repository at this point in the history
  • Loading branch information
Glassmaker committed Jan 7, 2015
1 parent b65c2a7 commit b1ac293
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/tconstruct/weaponry/weapons/Crossbow.java
Expand Up @@ -342,9 +342,9 @@ else if(!tags.hasKey("Reloading"))
switch (renderPass)
{
case 0: return getCorrectAnimationIcon(animationHandleIcons, tags.getInteger("RenderHandle"), progress);
case 1: return getCorrectAnimationIcon(animationHeadIcons, tags.getInteger("renderHead"), progress);
case 2: return getCorrectAnimationIcon(animationAccessoryIcons, tags.getInteger("renderAccessory"), progress);
case 3: return getCorrectAnimationIcon(animationExtraIcons, tags.getInteger("renderExtra"), progress);
case 1: return getCorrectAnimationIcon(animationHeadIcons, tags.getInteger("RenderHead"), progress);
case 2: return getCorrectAnimationIcon(animationAccessoryIcons, tags.getInteger("RenderAccessory"), progress);
case 3: return getCorrectAnimationIcon(animationExtraIcons, tags.getInteger("RenderExtra"), progress);
}

return emptyIcon;
Expand Down

0 comments on commit b1ac293

Please sign in to comment.