forked from rDrama/rDrama
1
0
Fork 0

fix buying awards in modal

master
Aevann 2023-01-01 04:34:12 +02:00
parent 43a2f828d0
commit 68a7053114
1 changed files with 3 additions and 5 deletions

View File

@ -92,11 +92,9 @@ function vote(type, id, dir) {
} }
function pick(kind, price, coins, marseybux) { function pick(kind, price, coins, marseybux) {
console.log(price) price = parseInt(price)
console.log(coins) price = coins(price)
console.log(marseybux) price = marseybux(price)
console.log(coins >= price)
console.log(marseybux >= price)
const buy1 = document.getElementById('buy1') const buy1 = document.getElementById('buy1')
if (coins >= price && kind != "grass") if (coins >= price && kind != "grass")