no imersium

This commit is contained in:
Brevven 2022-02-01 13:12:33 -08:00
parent 141211e02b
commit ceda1eb08e
3 changed files with 9 additions and 2 deletions

View file

@ -1,4 +1,9 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 0.0.11
Date: 2022-02-02
Changes:
- Refractory recipes: Remove "Imersium Plate" recipe - was not meant for endgame materials.
---------------------------------------------------------------------------------------------------
Version: 0.0.10 Version: 0.0.10
Date: 2022-01-31 Date: 2022-01-31
Fixes: Fixes:

View file

@ -1,6 +1,6 @@
{ {
"name": "bzfoundry", "name": "bzfoundry",
"version": "0.0.10", "version": "0.0.11",
"factorio_version": "1.1", "factorio_version": "1.1",
"title": "Foundry", "title": "Foundry",
"author": "Brevven", "author": "Brevven",

View file

@ -199,7 +199,9 @@ if util.me.founding_plates() then
local new_recipes = {} local new_recipes = {}
for name, recipe in pairs(data.raw.recipe) do for name, recipe in pairs(data.raw.recipe) do
if recipe.category ~= "smelting" then goto continue end if recipe.category ~= "smelting" then goto continue end
if name == "steel-plate" or name == "se-naquium-ingot" then goto continue end if (name == "steel-plate" or
name == "imersium-plate" or
name == "se-naquium-ingot") then goto continue end
local new_recipe = make_recipe(recipe) local new_recipe = make_recipe(recipe)
if new_recipe then if new_recipe then
table.insert(new_recipes, new_recipe) table.insert(new_recipes, new_recipe)