Skip to content

Commit a76f353

Browse files
committed
Entries not combining in Factoriopedia #565
1 parent 8f07a97 commit a76f353

6 files changed

Lines changed: 17 additions & 6 deletions

File tree

bobplates/changelog.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---------------------------------------------------------------------------------------------------
22
Version: 2.0.6
33
Date: ???
4+
Bugfixes:
5+
- Fixed some fluids / recipes not combining in Factoriopedia #565
46
Changes:
57
- Updated recipes for Rockets and T3 modules to require Advanced processing units instead of Advanced circuits #559
68
---------------------------------------------------------------------------------------------------

bobplates/data-updates.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if settings.startup["bobmods-plates-expensive-electrolysis"].value == true then
1919
data.raw.fluid["bob-deuterium"].fuel_value = "25kJ"
2020
data.raw.recipe["bob-petroleum-gas-cracking"].results[1].amount = 250
2121
data.raw.recipe["bob-water-electrolysis"].energy_required = 2
22-
data.raw.recipe["bob-heavy-water-electrolysis"].energy_required = 2
22+
data.raw.recipe["bob-deuterium"].energy_required = 2
2323
if data.raw.recipe["bob-sodium-chlorate"] then
2424
data.raw.recipe["bob-sodium-chlorate"].energy_required = 6
2525
data.raw.recipe["bob-sodium-perchlorate"].energy_required = 2
@@ -35,7 +35,7 @@ if settings.startup["bobmods-plates-expensive-electrolysis"].value == true then
3535
data.raw["assembling-machine"]["bob-electrolyser"].energy_source.drain = "11kW"
3636
data.raw.recipe["bob-water-electrolysis"].allow_consumption = false
3737
data.raw.recipe["bob-salt-water-electrolysis"].allow_consumption = false
38-
data.raw.recipe["bob-heavy-water-electrolysis"].allow_consumption = false
38+
data.raw.recipe["bob-deuterium"].allow_consumption = false
3939
if data.raw.recipe["bob-sodium-chlorate"] then
4040
data.raw.recipe["bob-sodium-chlorate"].allow_consumption = false
4141
data.raw.recipe["bob-sodium-perchlorate"].allow_consumption = false

bobplates/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bobplates",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"factorio_version": "2.0",
55
"title": "Bob's Metals, Chemicals and Intermediates mod",
66
"author": "Bobingabout",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recipe":
3+
[
4+
["bob-heavy-water-electrolysis", "bob-deuterium"]
5+
]
6+
}

bobplates/prototypes/recipe/chemistry-recipe.lua

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -880,15 +880,17 @@ data:extend({
880880
tertiary = { r = 0.7, g = 0.7, b = 0.7, a = 0.000 },
881881
},
882882
allow_decomposition = false,
883+
main_product = "bob-heavy-water",
883884
},
884885

885886
{
886887
type = "recipe",
887-
name = "bob-heavy-water-electrolysis",
888+
name = "bob-deuterium",
889+
localised_name = { "recipe-name.bob-heavy-water-electrolysis" },
888890
icon = "__bobplates__/graphics/icons/heavy-water-electrolysis.png",
889891
icon_size = 64,
890892
subgroup = "bob-fluid-electrolysis",
891-
order = "b[fluid-chemistry]-b[bob-heavy-water-electrolysis]",
893+
order = "b[fluid-chemistry]-b[bob-deuterium]",
892894
category = "bob-electrolysis",
893895
enabled = false,
894896
energy_required = 1,
@@ -900,6 +902,7 @@ data:extend({
900902
{ type = "fluid", name = "bob-oxygen", amount = 12.5 },
901903
},
902904
allow_decomposition = false,
905+
main_product = "bob-deuterium",
903906
},
904907

905908
{

bobplates/prototypes/technology-nuclear.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ data:extend({
209209
effects = {
210210
{
211211
type = "unlock-recipe",
212-
recipe = "bob-heavy-water-electrolysis",
212+
recipe = "bob-deuterium",
213213
},
214214
{
215215
type = "unlock-recipe",

0 commit comments

Comments
 (0)