diff --git a/changelog.txt b/changelog.txt index 1591148..1c87eb3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,7 +1,13 @@ --------------------------------------------------------------------------------------------------- +Version: 0.6.3 +Date: 2021-07-02 + Fixes: + - More SE subgroup cleanup + - Locale string fix for new setting +--------------------------------------------------------------------------------------------------- Version: 0.6.2 Date: 2021-07-02 - Changes: + Fixes: - SE K2 subgroup cleanup Features: - Setting to turn off byproduct when used with Titanium mod diff --git a/info.json b/info.json index 15649fb..644e2da 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "bzzirconium", - "version": "0.6.2", + "version": "0.6.3", "factorio_version": "1.1", "title": "Zirconium", "author": "Brevven", diff --git a/locale/en/zirconium.cfg b/locale/en/zirconium.cfg index c3ac63c..0510219 100644 --- a/locale/en/zirconium.cfg +++ b/locale/en/zirconium.cfg @@ -62,7 +62,7 @@ bzzirconium-enable-intermediates=Enable cermet bzzirconium-enable-sorting=Enable stone sorting [mod-setting-description] bzzirconium-recipe-bypass=Skip modifying these recipes (comma-separated list). -bzlead-byproduct=If enabled and using Titanium mod, zirconia production will output titanium as a byproduct. +bzzirconium-byproduct=If enabled and using Titanium mod, zirconia production will output titanium as a byproduct. bzzirconium-enable-intermediates=Enable cermet, an advanced intermediate made from ceramics and metals. bzzirconium-enable-sorting=Enable "sorting" recipes to convert between zircon and stone. This is no longer as useful for burner phase as it used to be, but left as an option for certain map layouts or existing factories. [string-mod-setting] diff --git a/zirconium-recipe.lua b/zirconium-recipe.lua index 301a428..6f65182 100644 --- a/zirconium-recipe.lua +++ b/zirconium-recipe.lua @@ -20,7 +20,6 @@ data:extend({ type = "recipe", name = "zirconia", category = "smelting", - subgroup = "raw-material", order = "z[zirconia]", icons = (mods["Krastorio2"] and { @@ -32,6 +31,7 @@ data:extend({ ), normal = (mods["Krastorio2"] and { + main_product = "zirconia", enabled = false, energy_required = 8, ingredients = {{"zircon", 5}}, @@ -41,6 +41,7 @@ data:extend({ } or {{"zirconia", 5}} } or { + main_product = "zirconia", enabled = false, energy_required = 3.2, ingredients = {{"zircon", 1}}, @@ -51,6 +52,7 @@ data:extend({ }), expensive = { + main_product = "zirconia", enabled = false, energy_required = 3.2, ingredients = {{"zircon", 1}},