mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
crafting factor was wrongly used as well …
This commit is contained in:
parent
d02018f893
commit
c3d6b8c250
@ -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,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user