From d1f0988d80bd68d3eb7eb196b590b907407fc515 Mon Sep 17 00:00:00 2001 From: InspectorCaracal <51038201+InspectorCaracal@users.noreply.github.com> Date: Sat, 10 Feb 2024 18:07:42 -0700 Subject: [PATCH] override example crafting recipes --- evennia/contrib/game_systems/crafting/crafting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/contrib/game_systems/crafting/crafting.py b/evennia/contrib/game_systems/crafting/crafting.py index bc1d0e140b..ccbc734b98 100644 --- a/evennia/contrib/game_systems/crafting/crafting.py +++ b/evennia/contrib/game_systems/crafting/crafting.py @@ -148,7 +148,7 @@ def _load_recipes(): if not _RECIPE_CLASSES: paths = ["evennia.contrib.game_systems.crafting.example_recipes"] if hasattr(settings, "CRAFT_RECIPE_MODULES"): - paths += make_iter(settings.CRAFT_RECIPE_MODULES) + paths = make_iter(settings.CRAFT_RECIPE_MODULES) for path in paths: for cls in callables_from_module(path).values(): if inherits_from(cls, CraftingRecipeBase):