diff --git a/app/services/pricing.py b/app/services/pricing.py index ae5204c..f27f2be 100644 --- a/app/services/pricing.py +++ b/app/services/pricing.py @@ -134,7 +134,7 @@ class PricingService: elif tcg_low_shipping > 20: new_price = round(tcg_low_shipping * 1.0125, 2) else: - new_price = round(tcg_low_shipping * 1.10, 2) + new_price = round(tcg_low_shipping * 1.08, 2) # if new price is less than half of market price, set to 90% market if new_price < (tcg_market_price / 2): new_price = round(tcg_market_price * 0.85, 2)