From 000762b43e1c64e2c8e65aafdfeb744801eb31de Mon Sep 17 00:00:00 2001 From: alistair3149 Date: Tue, 6 Jun 2023 02:05:22 -0400 Subject: [PATCH 1/2] fix: incorrect vehicle rental price percentage --- app/Models/StarCitizenUnpacked/Shop/ShopItem.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Models/StarCitizenUnpacked/Shop/ShopItem.php b/app/Models/StarCitizenUnpacked/Shop/ShopItem.php index 24ec1a28e..5b54afc94 100644 --- a/app/Models/StarCitizenUnpacked/Shop/ShopItem.php +++ b/app/Models/StarCitizenUnpacked/Shop/ShopItem.php @@ -121,10 +121,10 @@ public function shop(): BelongsTo public function rental(): HasOne { return $this->hasOne(ShopItemRental::class, 'item_uuid', 'item_uuid')->withDefault([ - 'percentage_1' => 1, - 'percentage_3' => 1, - 'percentage_7' => 1, - 'percentage_30' => 1, + 'percentage_1' => 2, + 'percentage_3' => 2, + 'percentage_7' => 2, + 'percentage_30' => 2, ]); } } From 861ada7dc7dff3a05097c0404c66486d88f517c8 Mon Sep 17 00:00:00 2001 From: alistair3149 Date: Tue, 6 Jun 2023 02:07:26 -0400 Subject: [PATCH 2/2] fix: incorrect vehicle rental price percentage --- app/Models/SC/Shop/ShopItem.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Models/SC/Shop/ShopItem.php b/app/Models/SC/Shop/ShopItem.php index 7c4242c75..bf8a7d136 100644 --- a/app/Models/SC/Shop/ShopItem.php +++ b/app/Models/SC/Shop/ShopItem.php @@ -122,10 +122,10 @@ public function shop(): BelongsTo public function rental(): HasOne { return $this->hasOne(ShopItemRental::class, 'node_uuid', 'node_uuid')->withDefault([ - 'percentage_1' => 1, - 'percentage_3' => 1, - 'percentage_7' => 1, - 'percentage_30' => 1, + 'percentage_1' => 2, + 'percentage_3' => 2, + 'percentage_7' => 2, + 'percentage_30' => 2, ]); } }