Merge a05e648d6b09a5840229adb56f967be0310d4887 into 4290ea753912378913b1f3f54e0fc5720afeda5d

This commit is contained in:
Lucas 2026-08-07 23:10:55 +08:00 committed by GitHub
commit 0a7d7c7189
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";
}