Skip to content

Commit

Permalink
Merge pull request #1318 from Glassmaker/patch-crossbow-animation
Browse files Browse the repository at this point in the history
Fixes Crossbow custom animation textures
  • Loading branch information
bonii-xx committed Jan 7, 2015
2 parents 7c03616 + b1ac293 commit a30e002
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/tconstruct/weaponry/weapons/Crossbow.java
Original file line number Diff line number Diff line change
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 a30e002

Please sign in to comment.