Skip to content

Commit

Permalink
Nothing significant
Browse files Browse the repository at this point in the history
  • Loading branch information
fuj1n committed Feb 15, 2014
1 parent 9bb6278 commit 1f8d769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/tconstruct/client/event/EventCloakRender.java
Expand Up @@ -95,7 +95,7 @@ public void buildCloakURLDatabase ()
}
else
{
System.err.println("[TinkersConstruct] [skins.txt] Syntax error on line " + linetracker + ": " + str);
System.err.println("[TinkersConstruct] [SkinLoader] Syntax error on line " + linetracker + ": " + str);
}
}
linetracker++;
Expand Down Expand Up @@ -133,7 +133,7 @@ public void run ()
Image cape = new ImageIcon(new URL(cloakURL)).getImage();
BufferedImage bo = new BufferedImage(cape.getWidth(null), cape.getHeight(null), BufferedImage.TYPE_INT_ARGB);
bo.getGraphics().drawImage(cape, 0, 0, null);
abstractClientPlayer.getTextureCape().bufferedImage = bo;
abstractClientPlayer.getTextureCape().setBufferedImage(bo);
}
catch (MalformedURLException e)
{
Expand Down

0 comments on commit 1f8d769

Please sign in to comment.