mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-02-28 09:01:06 +00:00
emergency bugfix
This commit is contained in:
parent
c221cf3260
commit
0ce48710d7
1 changed files with 3 additions and 2 deletions
|
|
@ -161,8 +161,6 @@ class LeaderboardsGui extends GuiImage {
|
|||
|
||||
var currentMission = allMissions[actualIndex];
|
||||
|
||||
var isHuntScore = currentMission.difficultyIndex == 3;
|
||||
|
||||
var scoreTok = 0;
|
||||
|
||||
function fetchScores() {
|
||||
|
|
@ -172,6 +170,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