Fix that
This commit is contained in:
@@ -125,7 +125,7 @@ public class LeaderboardsMenu : MonoBehaviour
|
||||
var scoreText = entryInfo.transform.GetChild(1).GetComponent<TMP_Text>();
|
||||
|
||||
usernameText.text = $"{entry.Username} (#{entry.UserID + 1})";
|
||||
scoreText.text = (mode == 2 ? "Coins: " : "Berries: ") + Tools.FormatWithCommas(entry.Value);
|
||||
scoreText.text = (mode == 1 || mode == 4 ? "Berries: " : mode == 2 ? "Coins: " : "Score: ") + Tools.FormatWithCommas(entry.Value);
|
||||
|
||||
if (BazookaManager.Instance.GetAccountID() == entry.UserID)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user