diff --git a/files/helpers/roulette.py b/files/helpers/roulette.py index d0df66392..3a7f20a2c 100644 --- a/files/helpers/roulette.py +++ b/files/helpers/roulette.py @@ -182,7 +182,7 @@ def spin_roulette_wheel(): if coin_winnings > 0: notification_text = notification_text + \ - f"* You received {coin_winnings} dramacoins.\n" + f"* You received {coin_winnings} coins.\n" if procoin_winnings > 0: notification_text = notification_text + \ diff --git a/files/templates/casino/blackjack_screen.html b/files/templates/casino/blackjack_screen.html index d8389be54..c634ef20c 100644 --- a/files/templates/casino/blackjack_screen.html +++ b/files/templates/casino/blackjack_screen.html @@ -101,7 +101,7 @@ ${playerCards} `; - const currency = state.wager.currency === 'coins' ? 'dramacoins' : 'marseybux'; + const currency = state.wager.currency === 'coins' ? 'coins' : 'marseybux'; switch (state.status) { case 'BLACKJACK': diff --git a/files/templates/casino/game_screen.html b/files/templates/casino/game_screen.html index e51717407..420e891e9 100644 --- a/files/templates/casino/game_screen.html +++ b/files/templates/casino/game_screen.html @@ -161,7 +161,7 @@ const [biggestWinnerAllTime, biggestWinner24h, biggestLoser24h, biggestLoserAllTime] = [ 'biggestWinnerAllTime', 'biggestWinner24h', 'biggestLoser24h', 'biggestLoserAllTime' ].map(id => document.getElementById(id)); - const formatLocalCurrencyName = currency => ({ coins: 'dramacoins', procoins: 'marseybux' })[currency]; + const formatLocalCurrencyName = currency => ({ coins: 'coins', procoins: 'marseybux' })[currency]; biggestWinnerAllTime.innerHTML = ` ${leaderboardData.all_time.biggest_win.user}
${leaderboardData.all_time.biggest_win.amount} ${formatLocalCurrencyName(leaderboardData.all_time.biggest_win.currency)}