This commit is contained in:
iVampireSP.com 2022-10-23 12:58:18 +08:00
parent e15cfb3443
commit 33e00b0ba9
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) {
$real_price = $price;
if ($price == null) {
$real_price = $this->price;
}
if ($price == 0) {
$real_price = 0;
return true;
}
$real_price = round($real_price ?? 0, 8);