diff --git a/common/src/comp/inventory/trade_pricing.rs b/common/src/comp/inventory/trade_pricing.rs index f115f948f9..8ff2217051 100644 --- a/common/src/comp/inventory/trade_pricing.rs +++ b/common/src/comp/inventory/trade_pricing.rs @@ -571,7 +571,7 @@ impl TradePricing { let stackable = item.is_stackable(); let new_entry = PriceEntry { name: recipe.output.clone(), - price: usage * (1.0 / (recipe.amount as f32) * Self::CRAFTING_FACTOR), + price: usage * (1.0 / (recipe.amount as f32 * Self::CRAFTING_FACTOR)), sell: output_tradeable, stackable, };