Skip to content

Commit

Permalink
Fix mistake in the script to dump crafting recipes.
Browse files Browse the repository at this point in the history
  • Loading branch information
vornne committed Aug 5, 2013
1 parent 09c2a75 commit a26cabe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dump_crafting_recipes.py
Expand Up @@ -66,7 +66,7 @@ class ItemInfo:
recipe.resource_names.append(item[1])
recipe.average_skill_level = entry[4]
recipe.max_crafting_reward = (recipe.resources_default_cost +
((recipe.average_skill_level * craft_skill_gold_reward_multiplier) / 100) +
(recipe.average_skill_level * craft_skill_gold_reward_multiplier) +
((recipe.crafted_item.price * craft_price_gold_reward_percentage) / 100))
recipe.time = item_craft_times[item_id]
crafting_recipes.append(recipe)
Expand Down

0 comments on commit a26cabe

Please sign in to comment.