diff --git a/app/Models/SC/Shop/ShopItem.php b/app/Models/SC/Shop/ShopItem.php index ac0cdda0e..4967c9153 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, '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, ]); } } 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, ]); } }