Skip to content

Commit

Permalink
Update player skin stuff to 1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Mar 10, 2015
1 parent 3696cf9 commit 8e71c57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -173,7 +173,7 @@ public static GameProfile fillGameProfile(GameProfile gameProfile) {
gameProfile1 = gameProfile;
}
if (Iterables.getFirst(gameProfile1.getProperties().get("textures"), null) == null) {
// gameProfile1 = MinecraftServer.getServer().aB().fillProfileProperties(gameProfile1, true); // TODO: 1.8.3 update
gameProfile1 = MinecraftServer.getServer().aC().fillProfileProperties(gameProfile1, true);
}
return gameProfile1;
}
Expand Down
Expand Up @@ -29,7 +29,7 @@ public class PlayerProfileEditor {
Field profileIdField = null;
Field profileNameField = null;
try {
profileField = EntityHuman.class.getDeclaredField("bF"); // TODO: Are these accurate (1.8.3)?
profileField = EntityHuman.class.getDeclaredField("bH");
profileField.setAccessible(true);
profileIdField = GameProfile.class.getDeclaredField("id");
profileIdField.setAccessible(true);
Expand Down

0 comments on commit 8e71c57

Please sign in to comment.