File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
src/main/java/net/wurstclient Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -5,16 +5,16 @@ org.gradle.parallel=true
55# Fabric Properties
66# check these at https://fabricmc.net/develop/ and
77# https://modrinth.com/mod/fabric-api/versions
8- minecraft_version =25w37a
9- yarn_mappings =25w37a +build.6
8+ minecraft_version =1.21.9-pre1
9+ yarn_mappings =1.21.9-pre1 +build.2
1010loader_version =0.17.2
1111loom_version =1.11-SNAPSHOT
1212
1313# Fabric API
14- fabric_version =0.133.6 +1.21.9
14+ fabric_version =0.133.7 +1.21.9
1515
1616# Mod Properties
17- mod_version =v7.50.1-MC25w37a
17+ mod_version =v7.50.1-MC1.21.9-pre1
1818maven_group =net.wurstclient
1919archives_base_name =Wurst-Client
2020mod_loader =Fabric
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public enum WurstClient
5151 public static IMinecraftClient IMC ;
5252
5353 public static final String VERSION = "7.50.1" ;
54- public static final String MC_VERSION = "25w37a " ;
54+ public static final String MC_VERSION = "1.21.9-pre1 " ;
5555
5656 private PlausibleAnalytics plausible ;
5757 private EventManager eventManager ;
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ private static Identifier loadOfflineSkin(String name)
6161 UUID uuid = Uuids .getOfflinePlayerUuid (name );
6262 GameProfile profile = new GameProfile (uuid , name );
6363 PlayerListEntry entry = new PlayerListEntry (profile , false );
64- Identifier texture = entry .getSkinTextures ().texture ();
64+ Identifier texture = entry .getSkinTextures ().body ();
6565 offlineSkins .put (name , texture );
6666 return texture ;
6767 }
@@ -91,7 +91,7 @@ private static void queueOnlineSkinLoading(String name)
9191 }, BACKGROUND_THREAD ).thenAcceptAsync (skinTextures -> {
9292
9393 if (skinTextures != null )
94- onlineSkins .put (name , skinTextures .texture ());
94+ onlineSkins .put (name , skinTextures .body ());
9595
9696 }, BACKGROUND_THREAD );
9797 }
You can’t perform that action at this time.
0 commit comments