Restore intro guide flow
All checks were successful
Build / build (push) Successful in 10m5s

This commit is contained in:
MrSphay
2026-05-08 00:33:17 +02:00
parent 062d69fcd5
commit 5bcf77137b
3 changed files with 280 additions and 70 deletions

View File

@@ -5,7 +5,6 @@ package com.vinlanx.explosionoverhaul.client;
import com.vinlanx.explosionoverhaul.Config;
import com.vinlanx.explosionoverhaul.ExplosionOverhaul;
import com.vinlanx.explosionoverhaul.client.IntroSplashScreen;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.screens.Screen;
import net.minecraft.client.gui.screens.TitleScreen;
@@ -31,7 +30,7 @@ public class FirstTimeSetupHandler {
}
if (pendingShowIntro && mc.screen instanceof TitleScreen) {
pendingShowIntro = false;
mc.setScreen(new FirstTimeScreen());
mc.setScreen(new GuideSlidesScreen());
}
}