This commit is contained in:
Lucas 2026-01-28 16:38:37 +00:00 committed by GitHub
commit f4046dd154
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -105,6 +105,7 @@ class Magic extends Operation {
*/
function chooseColour(val) {
if (val < 3) return "green";
if (val < 4) return "yellowgreen";
if (val < 5) return "goldenrod";
return "red";
}