fix crucible

This commit is contained in:
Brevven 2022-01-01 21:58:20 -08:00
parent 26069b4fe0
commit 67b51a5673
4 changed files with 30 additions and 26 deletions

View file

@ -20,7 +20,7 @@ end
if deadlock_crating then if deadlock_crating then
deadlock_crating.add_crate("flake-graphite", "deadlock-crating-2") deadlock_crating.add_crate("flake-graphite", "deadlock-crating-2")
deadlock_crating.add_crate("graphite", "deadlock-crating-2") deadlock_crating.add_crate("graphite", "deadlock-crating-2")
deadlock_crating.add_crate("diamonds", "deadlock-crating-2") deadlock_crating.add_crate("diamond", "deadlock-crating-2")
deadlock_crating.add_crate("graphene", "deadlock-crating-2") deadlock_crating.add_crate("graphene", "deadlock-crating-2")
if util.me.use_fullerenes() then if util.me.use_fullerenes() then
deadlock_crating.add_crate("fullerenes", "deadlock-crating-2") deadlock_crating.add_crate("fullerenes", "deadlock-crating-2")

View file

@ -486,28 +486,26 @@ data:extend({
}) })
end end
if mods.bzzirconium or mods.bztungsten then data:extend({
data:extend({ {
{ type = "item",
type = "item", name = "crucible",
name = "crucible", icon = "__bzcarbon__/graphics/icons/crucible.png", icon_size = 128,
icon = "__bzcarbon__/graphics/icons/crucible.png", icon_size = 128, subgroup = "intermediate-product",
subgroup = "intermediate-product", order = "g[crucible]",
order = "g[crucible]", stack_size = 50,
stack_size = 50, },
{
type = "recipe",
name = "crucible",
category = "crafting",
order = "d[graphite]",
enabled = false,
energy_required = 3,
ingredients = {
{type="item", name="graphite", amount=5},
}, },
{ result = "crucible",
type = "recipe", result_count = 1,
name = "crucible", },
category = "crafting", })
order = "d[graphite]",
enabled = false,
energy_required = 3,
ingredients = {
{type="item", name="graphite", amount=5},
},
result = "crucible",
result_count = 1,
},
})
end

View file

@ -1,4 +1,10 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 0.0.5
Date: 2022-01-02
Fixes:
- Fix issue with crucible if certain mods were not enabled
- Deadlock: Fix crating of diamonds
---------------------------------------------------------------------------------------------------
Version: 0.0.4 Version: 0.0.4
Date: 2022-01-01 Date: 2022-01-01
Changes: Changes:

View file

@ -1,6 +1,6 @@
{ {
"name": "bzcarbon", "name": "bzcarbon",
"version": "0.0.4", "version": "0.0.5",
"factorio_version": "1.1", "factorio_version": "1.1",
"title": "Graphite & Diamonds", "title": "Graphite & Diamonds",
"author": "Brevven", "author": "Brevven",