Skip to content

Commit 64c0a74

Browse files
[Wurst-Bot] Update to 1.21.9-pre1
1 parent 846d443 commit 64c0a74

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
1010
loader_version=0.17.2
1111
loom_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
1818
maven_group=net.wurstclient
1919
archives_base_name=Wurst-Client
2020
mod_loader=Fabric

src/main/java/net/wurstclient/WurstClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

src/main/java/net/wurstclient/altmanager/AltRenderer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)