- Removed debug code

- fixed unstableprompt
This commit is contained in:
RePixelatedMC
2023-11-04 17:00:09 +01:00
parent fdfb708ce0
commit 8bf7451107
2 changed files with 30 additions and 29 deletions
@@ -67,7 +67,6 @@ public class ServerBootSFG {
} }
allIncompatiblePlugins = joiner.toString(); allIncompatiblePlugins = joiner.toString();
Iris.info("All Incompatible Plugins: " + allIncompatiblePlugins);
safeguardPassed = (count == 0); safeguardPassed = (count == 0);
if(!safeguardPassed){ if(!safeguardPassed){
@@ -62,6 +62,7 @@ public class UtilsSFG {
public static void unstablePrompt() { public static void unstablePrompt() {
if (unstablemode) {
Iris.info(""); Iris.info("");
Iris.info(C.DARK_GRAY + "--==<" + C.RED + " IMPORTANT " + C.DARK_GRAY + ">==--"); Iris.info(C.DARK_GRAY + "--==<" + C.RED + " IMPORTANT " + C.DARK_GRAY + ">==--");
Iris.info(C.RED + "Iris is running in unstable mode what may cause the following issues."); Iris.info(C.RED + "Iris is running in unstable mode what may cause the following issues.");
@@ -95,3 +96,4 @@ public class UtilsSFG {
Iris.info(""); Iris.info("");
} }
} }
}