mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
emergency bugfix
This commit is contained in:
parent
484debd4ab
commit
efdb666b68
1 changed files with 3 additions and 2 deletions
|
|
@ -156,8 +156,6 @@ class LeaderboardsGui extends GuiImage {
|
|||
|
||||
var currentMission = allMissions[actualIndex];
|
||||
|
||||
var isHuntScore = currentMission.difficultyIndex == 3;
|
||||
|
||||
var scoreTok = 0;
|
||||
|
||||
function fetchScores() {
|
||||
|
|
@ -167,6 +165,9 @@ class LeaderboardsGui extends GuiImage {
|
|||
return;
|
||||
var scoreTexts = [];
|
||||
var i = 1;
|
||||
|
||||
var isHuntScore = currentMission.difficultyIndex == 3;
|
||||
|
||||
for (score in scoreList) {
|
||||
var scoreText = '<offset value="10">${i}. </offset>
|
||||
<offset value="50">${score.name}</offset>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue