0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-20 01:12:13 +02:00

Update to 1.19-pre2

This commit is contained in:
Alexander01998 2022-05-23 18:22:13 +02:00
parent e5d63264ae
commit 662055ce73
5 changed files with 9 additions and 9 deletions

View File

@ -4,15 +4,15 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these at https://fabricmc.net/develop/ and
# https://www.curseforge.com/minecraft/mc-mods/fabric-api
minecraft_version=1.19-pre1
yarn_mappings=1.19-pre1+build.7
minecraft_version=1.19-pre2
yarn_mappings=1.19-pre2+build.1
loader_version=0.14.6
#Fabric api
fabric_version=0.53.2+1.19
fabric_version=0.53.3+1.19
# Mod Properties
mod_version = v7.26-MC1.19-pre1
mod_version = v7.26-MC1.19-pre2
maven_group = net.wurstclient
archives_base_name = Wurst-Client

View File

@ -56,7 +56,7 @@ public enum WurstClient
public static final IMinecraftClient IMC = (IMinecraftClient)MC;
public static final String VERSION = "7.26";
public static final String MC_VERSION = "1.19-pre1";
public static final String MC_VERSION = "1.19-pre2";
private WurstAnalytics analytics;
private EventManager eventManager;

View File

@ -44,7 +44,7 @@ public final class AltRenderer
PlayerListEntry entry = new PlayerListEntry(
new PlayerListS2CPacket.Entry(new GameProfile(uuid, name), 0,
GameMode.CREATIVE, Text.literal(name), null),
WurstClient.MC.method_44256());
WurstClient.MC.getServicesSignatureVerifier());
loadedSkins.put(name, entry.getSkinTexture());
}

View File

@ -51,13 +51,13 @@ public class ChatScreenMixin extends Screen
if(normalized.startsWith(".say "))
{
// send preview, but only for the part after ".say "
chatPreviewer.method_44274(normalized.substring(5));
chatPreviewer.tryRequest(normalized.substring(5));
ci.cancel();
}else if(normalized.startsWith("."))
{
// disable & delete preview
chatPreviewer.method_44275();
chatPreviewer.disablePreview();
ci.cancel();
}
}

View File

@ -29,7 +29,7 @@
"depends": {
"fabricloader": ">=0.14.0",
"fabric": ">=0.51.0",
"minecraft": "~1.19-beta.1",
"minecraft": "~1.19-beta.2",
"java": ">=17"
},
"suggests": {