This commit is contained in:
iVampireSP.com 2022-10-23 12:56:22 +08:00
parent 66d929ff9f
commit e15cfb3443
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -95,12 +95,12 @@ public function cost($price = null, $auto = true)
$drops = $transaction->getDrops($this->user_id);
if ($price !== null) {
if ($price != null) {
$real_price = $price;
}
if ($price == 0) {
return true;
$real_price = 0;
}
$real_price = round($real_price ?? 0, 8);