You guys probably know about the AntiSteve patch that fixes your player skin for Premium Minecraft. (http://www.minecraftforum.net/topic/1449258-142-antisteve-10/)
The reason skins aren't working is because the hosting for Minecraft skins changed. This can be fixed with a few simple lines of codes in your Minecraft jar.
However this still does not fix it in browser classic. WoM doesn't work for me, it gives an authentication error.
Now the code to fix the skins is
The reason skins aren't working is because the hosting for Minecraft skins changed. This can be fixed with a few simple lines of codes in your Minecraft jar.
However this still does not fix it in browser classic. WoM doesn't work for me, it gives an authentication error.
Now the code to fix the skins is
21c21,29
< this.location = par2Str;
---
> if (par2Str.contains("skins.minecraft.net"))
> {
> String newLocation = (new StringBuilder()).append(par2Str).replace(7, 26, "s3.amazonaws.com").toString();
> this.location = newLocation;
> }
> else
> {
> this.location = par2Str;
> }
By my understanding this works for WoM too but since I can't use WoM can the code fix somehow be implemented using a browser add-on? I'm not versed in Java so I wouldn't know, does anybody else know?
