Remove the title screen "uwu" splash text

This commit is contained in:
7cc5c4f330d47060 2024-09-02 15:38:48 -04:00
parent 84c7aa23c9
commit 8a82dc6889
Signed by: 7cc5c4f330d47060
SSH key fingerprint: SHA256:e+4tcZut1nBpe10PqjaO+Rvie0Q7W4qIvFzcUw+7riA

View file

@ -19,12 +19,8 @@ import java.io.IOException;
@Mixin(TitleScreen.class) @Mixin(TitleScreen.class)
public class TitleScreenMixin { public class TitleScreenMixin {
@Shadow
private SplashTextRenderer splashText;
@Inject(method = "init", at = @At("HEAD")) @Inject(method = "init", at = @At("HEAD"))
void testclient$initializeGui(CallbackInfo ci) { void testclient$initializeGui(CallbackInfo ci) {
splashText = new SplashTextRenderer("uwu");
if(Gui.gui == null){ if(Gui.gui == null){
Gui.initAutoRefresher(); Gui.initAutoRefresher();
Gui.addComponents(); Gui.addComponents();