Skip to content

Commit

Permalink
Fixed skins
Browse files Browse the repository at this point in the history
  • Loading branch information
ammoore00 committed Nov 9, 2021
1 parent a9e3ae6 commit cbf7a35
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Note that this version removed several base class edits and as such requires a c
[*]Fixed an issue where acacia tables would not connect to acacia fences.
[*]Fixed an issue where cherry moulding used the acacia texture in inventory.
[*]Fixed an issue where coal could not be used in ovens.
[*]Fixed an issue where player skins were not loading properly.
[/list]

Version 3.0.2
Expand Down
5 changes: 4 additions & 1 deletion minecraft/net/minecraft/src/EntityPlayerSP.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ public EntityPlayerSP(Minecraft par1Minecraft, World par2World, Session par3Sess

if (par3Session != null && par3Session.username != null && par3Session.username.length() > 0)
{
this.skinUrl = FCBetterThanWolves.fcPlayerSkinURL + StringUtils.stripControlCodes(par3Session.username) + ".png";
// FCMOD: Changed, client only
this.skinUrl = "http://skins.minecraft.net/MinecraftSkins/" + StringUtils.stripControlCodes(par3Session.username) + ".png";
//this.skinUrl = FCBetterThanWolves.fcPlayerSkinURL + fetchUuid(par3Session.username);
// END FCMOD
}

this.username = par3Session.username;
Expand Down

0 comments on commit cbf7a35

Please sign in to comment.