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

[Wurst-Bot] Update to 1.19.4-pre3

This commit is contained in:
Alexander01998 2023-03-01 22:05:03 +01:00
parent 554d5ae325
commit 5c6cdd1526
5 changed files with 8 additions and 8 deletions

View File

@ -4,15 +4,15 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties # Fabric Properties
# check these at https://fabricmc.net/develop/ and # check these at https://fabricmc.net/develop/ and
# https://www.curseforge.com/minecraft/mc-mods/fabric-api # https://www.curseforge.com/minecraft/mc-mods/fabric-api
minecraft_version=1.19.4-pre2 minecraft_version=1.19.4-pre3
yarn_mappings=1.19.4-pre2+build.1 yarn_mappings=1.19.4-pre3+build.1
loader_version=0.14.17 loader_version=0.14.17
#Fabric api #Fabric api
fabric_version=0.75.1+1.19.4 fabric_version=0.75.2+1.19.4
# Mod Properties # Mod Properties
mod_version = v7.32-MC1.19.4-pre2 mod_version = v7.32-MC1.19.4-pre3
maven_group = net.wurstclient maven_group = net.wurstclient
archives_base_name = Wurst-Client archives_base_name = Wurst-Client

View File

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

View File

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

View File

@ -77,7 +77,7 @@ public abstract class TitleScreenMixin extends Screen
// adjust AltManager button if Realms button has been moved // adjust AltManager button if Realms button has been moved
// happens when ModMenu is installed // 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); setFocused(searchBar);
searchBar.setFocused(true); searchBar.setFocused(true);
searchBar.setX(middleX - 100); searchBar.method_46421(middleX - 100);
setContentHeight(navigatorDisplayList.size() / 3 * 20); setContentHeight(navigatorDisplayList.size() / 3 * 20);
} }