фикс дюпа алмазов в служебном апи)

This commit is contained in:
celestora 2022-11-14 16:22:23 +02:00 committed by GitHub
parent 0a4b7225ea
commit 3c632f3910
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -55,6 +55,11 @@ class Apps implements Handler
return;
}
if($amount < 0) {
$reject(552, "Payment amount is invalid");
return;
}
$coinsLeft = $this->user->getCoins() - $amount;
if($coinsLeft < 0) {
$reject(41, "Not enough money");

View file

@ -142,6 +142,8 @@ function handlePayment(event) {
ok: false,
error: "negative sum"
}, '*');
return;
}
MessageBox(