changed boolean to string
Some checks failed
build / build (21) (push) Has been cancelled

This commit is contained in:
Walrus 2024-08-10 15:26:37 -04:00
parent 1368d2f379
commit f48ec70e2a

View File

@ -115,7 +115,7 @@ public final class Setup {
} }
} }
//need to be able to take in raw booleans for coloredstrings functions //need to be able to take in raw booleans for coloredstrings functions
System.out.println(ChatUtil.ColoredString("CHECKS DEBUG: Value of has_write: ", CONSOLE_COLOR.BLUE) + has_write + ChatUtil.ColoredString(". Value of has_read: ", CONSOLE_COLOR.BLUE) + has_read); System.out.println(ChatUtil.ColoredString("CHECKS DEBUG: Value of has_write: ", CONSOLE_COLOR.BLUE) + ChatUtil.ColoredString(has_write.toString(), CONSOLE_COLOR.YELLOW) + ChatUtil.ColoredString(". Value of has_read: ", CONSOLE_COLOR.BLUE) + ChatUtil.ColoredString(has_read.toString(), CONSOLE_COLOR.YELLOW));
return has_write && has_read; return has_write && has_read;
} }