diff --git a/reworked/calc.py b/reworked/calc.py index 1d5cfb9..c26ac20 100644 --- a/reworked/calc.py +++ b/reworked/calc.py @@ -1,12 +1,15 @@ -def expand_recipe(recipe, recipes, main = False): +def expand_recipe(recipe, recipes): global expanded ok = False - part = 1 + part = 1 # Одна часть while not ok: ok = True + # Перебираем элементы for el in recipe: + # Если составное if el in recipes: + # Одна часть должна делиться без остатка! if part % recipes[el].out != 0: ok = False part += 1 @@ -26,7 +29,7 @@ def calc(element, amount, recipes): global expanded expanded = {} - expand_recipe(recipe, recipes, True) + expand_recipe(recipe, recipes) return expanded