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

[Wurst-Bot] Update to 23w13a

This commit is contained in:
Alexander01998 2023-03-29 18:01:42 +02:00
parent a3dfa1e339
commit 2285426b99
5 changed files with 8 additions and 8 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=23w12a
yarn_mappings=23w12a+build.1
minecraft_version=23w13a
yarn_mappings=23w13a+build.1
loader_version=0.14.18
#Fabric api
fabric_version=0.76.1+1.20
fabric_version=0.76.2+1.20
# Mod Properties
mod_version = v7.32-MC23w12a
mod_version = v7.32-MC23w13a
maven_group = net.wurstclient
archives_base_name = Wurst-Client

View File

@ -57,7 +57,7 @@ public enum WurstClient
public static IMinecraftClient IMC;
public static final String VERSION = "7.32";
public static final String MC_VERSION = "23w12a";
public static final String MC_VERSION = "23w13a";
private WurstAnalytics analytics;
private EventManager eventManager;

View File

@ -55,7 +55,7 @@ public abstract class StatsScreenMixin extends Screen implements StatsListener
.equals(I18n.translate("gui.done")))
continue;
button.setX(width / 2 + 2);
button.method_46421(width / 2 + 2);
button.setWidth(150);
}
}

View File

@ -77,7 +77,7 @@ public abstract class TitleScreenMixin extends Screen
// adjust AltManager button if Realms button has been moved
// happens when ModMenu is installed
altsButton.setY(realmsButton.getY());
altsButton.method_46419(realmsButton.getY());
}
/**

View File

@ -73,7 +73,7 @@ public final class NavigatorMainScreen extends NavigatorScreen
setFocused(searchBar);
searchBar.setFocused(true);
searchBar.setX(middleX - 100);
searchBar.method_46421(middleX - 100);
setContentHeight(navigatorDisplayList.size() / 3 * 20);
}