[+] Show alert in CI builds

This commit is contained in:
Clansty
2024-11-06 11:39:54 +08:00
parent 99d7fe5ca2
commit 11beb6676e
7 changed files with 59 additions and 3 deletions

View File

@@ -188,6 +188,9 @@ namespace AquaMai
Patch(typeof(TestProof));
Patch(typeof(PractiseMode));
Patch(typeof(HideSelfMadeCharts));
# if CI
Patch(typeof(CiBuildAlert));
# endif
// Apply patches based on the settings
ApplyPatches();
@@ -198,6 +201,11 @@ namespace AquaMai
MelonLogger.Warning("===========================================================================");
}
# if CI
MelonLogger.Warning(Locale.CiBuildAlertTitle);
MelonLogger.Warning(Locale.CiBuildAlertContent);
# endif
MelonLogger.Msg(Locale.Loaded);
}