Fix red/green inline bool colour

This commit is contained in:
Vortrex
2020-12-23 23:04:54 -06:00
parent 3b6b8dde5f
commit f2809e05df

View File

@@ -1722,7 +1722,7 @@ function getClientDisplayForConsole(client) {
// ----------------------------------------------------------------------------
function getBoolRedGreenInlineColour(boolVal) {
return (!boolVal) ? getColourByName("softRed") : getColourByName("softGreen");
return (!boolVal) ? "[#AA2222]" : "[#22AA22]";
}
// ----------------------------------------------------------------------------