diff options
-rw-r--r-- | data.lua | 4 | ||||
-rw-r--r-- | prototypes/energy-pad.lua | 6 | ||||
-rw-r--r-- | prototypes/recipe.lua (renamed from prototypes/recepie.lua) | 0 |
3 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ require("prototypes.tech")
-require("prototypes.recepie")
+require("prototypes.recipe")
require("prototypes.entities")
require("prototypes.item")
@@ -9,4 +9,4 @@ end if(mods["space-age"]) then
require("prototypes.energy-pad")
-end
\ No newline at end of file +end
diff --git a/prototypes/energy-pad.lua b/prototypes/energy-pad.lua index 11b3c50..4c79661 100644 --- a/prototypes/energy-pad.lua +++ b/prototypes/energy-pad.lua @@ -15,8 +15,8 @@ energy_source.collision_box = clp.collision_box energy_source.selection_box = clp.selection_box
-local clp_recepie = util.table.deepcopy(data.raw["recipe"]["cargo-landing-pad"])
-clp_recepie.ingredients =
+local clp_recipe = util.table.deepcopy(data.raw["recipe"]["cargo-landing-pad"])
+clp_recipe.ingredients =
{
{type = "item", name = "concrete", amount = 250},
{type = "item", name = "processing-unit", amount = 35},
@@ -45,7 +45,7 @@ heat_pipe.minable = nil data:extend({
energy_source,
- clp_recepie,
+ clp_recipe,
heat_pipe,
thermal_pad
})
diff --git a/prototypes/recepie.lua b/prototypes/recipe.lua index ba0112e..ba0112e 100644 --- a/prototypes/recepie.lua +++ b/prototypes/recipe.lua |