1
0

Fix server intro not ending when installing loader

This commit is contained in:
Prospector
2025-06-03 20:28:23 -07:00
parent 02a850ae63
commit c9423fe478

View File

@@ -862,7 +862,7 @@ const newLoaderVersion = ref<string | null>(null);
const newMCVersion = ref<string | null>(null);
const onReinstall = (potentialArgs: any) => {
if (serverData.value?.flows?.intro && server.general?.project) {
if (serverData.value?.flows?.intro) {
server.general?.endIntro();
}