mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
Fix wrong color in Best Time for some MBU levels
This commit is contained in:
parent
81708632cc
commit
74c7125e9c
1 changed files with 1 additions and 1 deletions
|
|
@ -783,7 +783,7 @@ class PlayMissionGui extends GuiImage {
|
||||||
if (topScore.time < currentMission.ultimateTime) {
|
if (topScore.time < currentMission.ultimateTime) {
|
||||||
scoreColor = "#FFCC33";
|
scoreColor = "#FFCC33";
|
||||||
} else if (topScore.time < currentMission.goldTime) {
|
} else if (topScore.time < currentMission.goldTime) {
|
||||||
if (currentMission.game == "gold" || currentMission.game == "Ultra")
|
if (currentMission.game == "gold" || currentMission.game.toLowerCase() == "ultra")
|
||||||
scoreColor = "#FFFF00"
|
scoreColor = "#FFFF00"
|
||||||
else
|
else
|
||||||
scoreColor = "#CCCCCC";
|
scoreColor = "#CCCCCC";
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue