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

Update to 21w42a

This commit is contained in:
Alexander01998 2021-10-22 20:30:28 +02:00
parent 3153682dff
commit 7999815129
5 changed files with 11 additions and 11 deletions

View File

@ -4,15 +4,15 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html and
# https://www.curseforge.com/minecraft/mc-mods/fabric-api
minecraft_version=21w41a
yarn_mappings=21w41a+build.1
loader_version=0.12.1
minecraft_version=21w42a
yarn_mappings=21w42a+build.3
loader_version=0.12.2
#Fabric api
fabric_version=0.40.9+1.18
fabric_version=0.41.1+1.18
# Mod Properties
mod_version = v7.17.1-MC21w41a
mod_version = v7.17.1-MC21w42a
maven_group = net.wurstclient
archives_base_name = Wurst-Client

View File

@ -57,7 +57,7 @@ public enum WurstClient
public static final IMinecraftClient IMC = (IMinecraftClient)MC;
public static final String VERSION = "7.17.1";
public static final String MC_VERSION = "21w41a";
public static final String MC_VERSION = "21w42a";
private WurstAnalytics analytics;
private EventManager eventManager;

View File

@ -8,7 +8,7 @@
package net.wurstclient.commands;
import net.minecraft.client.network.PlayerListEntry;
import net.minecraft.util.ChatUtil;
import net.minecraft.util.StringHelper;
import net.wurstclient.altmanager.Alt;
import net.wurstclient.altmanager.AltManager;
import net.wurstclient.command.CmdException;
@ -62,7 +62,7 @@ public final class AddAltCmd extends Command
for(PlayerListEntry entry : MC.player.networkHandler.getPlayerList())
{
String name = entry.getProfile().getName();
name = ChatUtil.stripTextFormat(name);
name = StringHelper.stripTextFormat(name);
if(altManager.contains(name))
continue;

View File

@ -12,7 +12,7 @@ import java.util.Collections;
import java.util.Random;
import net.minecraft.client.network.PlayerListEntry;
import net.minecraft.util.ChatUtil;
import net.minecraft.util.StringHelper;
import net.wurstclient.Category;
import net.wurstclient.SearchTags;
import net.wurstclient.events.ChatInputListener;
@ -51,7 +51,7 @@ public final class MassTpaHack extends Hack
for(PlayerListEntry info : MC.player.networkHandler.getPlayerList())
{
String name = info.getProfile().getName();
name = ChatUtil.stripTextFormat(name);
name = StringHelper.stripTextFormat(name);
if(name.equalsIgnoreCase(playerName))
continue;

View File

@ -29,7 +29,7 @@
"depends": {
"fabricloader": ">=0.11.3",
"fabric": ">=0.36.1",
"minecraft": ">=1.18-alpha.21.38.a",
"minecraft": ">=1.18-alpha.21.42.a",
"java": ">=16"
},
"suggests": {