mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-01-10 09:12:16 +00:00
Merge pull request #15 from thearst3rd/mbp-colorfix2
MBP - Fix wrong color in Best Time for some MBU levels
This commit is contained in:
commit
a8f36317c5
1 changed files with 1 additions and 1 deletions
|
|
@ -828,7 +828,7 @@ class PlayMissionGui extends GuiImage {
|
|||
if (topScore.time < currentMission.ultimateTime) {
|
||||
scoreColor = "#FFCC33";
|
||||
} else if (topScore.time < currentMission.goldTime) {
|
||||
if (currentMission.game == "gold" || currentMission.game == "Ultra")
|
||||
if (currentMission.game == "gold" || currentMission.game.toLowerCase() == "ultra")
|
||||
scoreColor = "#FFFF00"
|
||||
else
|
||||
scoreColor = "#CCCCCC";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue