Stub indexing and smoke compile blockers
Some checks failed
Build / build (push) Failing after 6m16s

This commit is contained in:
MrSphay
2026-05-07 01:07:27 +02:00
parent e57ea07de2
commit 4e41649a0a
5 changed files with 35 additions and 1878 deletions

View File

@@ -22,25 +22,6 @@ public class FirstTimeSetupHandler {
@SubscribeEvent
public static void onClientTick(TickEvent.ClientTickEvent event) {
if (event.phase != TickEvent.Phase.END) {
return;
}
Minecraft mc = Minecraft.getInstance();
if (!hasChecked && mc.screen instanceof TitleScreen) {
hasChecked = true;
ExplosionOverhaul.LOGGER.info("Detected TitleScreen on client, hasChecked=true");
if (Config.isFirstLaunch()) {
pendingShowIntro = true;
}
}
if (!pendingShowIntro) {
return;
}
if (mc.screen instanceof TitleScreen) {
pendingShowIntro = false;
ExplosionOverhaul.LOGGER.info("Showing IntroSplashScreen (first launch)");
mc.m_91152_((Screen)new IntroSplashScreen());
}
}
static {