Restore setup screen and force visible explosion behavior
All checks were successful
Build / build (push) Successful in 10m52s

This commit is contained in:
MrSphay
2026-05-07 23:08:09 +02:00
parent 73f0fac8eb
commit 062d69fcd5
4 changed files with 102 additions and 4 deletions

View File

@@ -25,14 +25,13 @@ public class FirstTimeSetupHandler {
Minecraft mc = Minecraft.getInstance();
if (!hasChecked && mc.screen instanceof TitleScreen) {
hasChecked = true;
if (Config.isFirstLaunch()) {
if (!((Boolean)Config.CLIENT.introSetupComplete.get()).booleanValue()) {
pendingShowIntro = true;
}
}
if (pendingShowIntro && mc.screen instanceof TitleScreen) {
pendingShowIntro = false;
mc.setScreen(new IntroSplashScreen());
Config.markFirstLaunchComplete();
mc.setScreen(new FirstTimeScreen());
}
}