Skip to content

Commit c12feb5

Browse files
committed
Version 0.12.11
Changelog: * Fixed bug with Natural Evolution. Red science pack recipe wasn't being set correctly.
1 parent 51b88be commit c12feb5

File tree

9 files changed

+30
-3
lines changed

9 files changed

+30
-3
lines changed

info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ScienceCostTweaker",
3-
"version": "0.12.10",
3+
"version": "0.12.11",
44
"title": "ScienceCostTweaker Mod",
55
"author": "UberWaffe",
66
"dependencies": ["base >= 0.12.0","? bobelecoveride >= 0.12.0","? UberTweaks >= 0.0.1", "? peacemod"],

tweaks/bobsmods/0_initial.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ end
1010
if (bobIsAbout == true) then
1111
-- Firstly, set the options for using the new intermediaries, as well as using the new tiered labs.
1212
require("tweaks.newintermediates")
13-
require("tweaks.tweakedsciencepacks")
1413

1514
-- Make resin craftable by hand, so that we can use it in science pack crafting.
1615
data.raw.recipe["bob-resin-wood"].category = "crafting"

tweaks/bobsmods/2_final.lua

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,17 @@ end
99
if (bobIsAbout == true) then
1010
-- Use the new labs new tiered labs.
1111
require("tweaks.newlabs")
12+
require("tweaks.tweakedsciencepacks")
1213

1314
-- Make resin craftable by hand, so that we can use it in science pack crafting.
1415
data.raw.recipe["bob-resin-wood"].category = "crafting"
16+
17+
-- Change the recipe for Science-Pack-4 (Dark Blue).
18+
data.raw.recipe["science-pack-4"].ingredients =
19+
{
20+
{"processing-unit", 1},
21+
{"express-transport-belt", 1},
22+
{"silicon-nitride", 1},
23+
{"lithium-ion-battery", 1}
24+
}
1525
end
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
-- This modifies the standard config for Bobingabout's Mods.
2+
-- So here we just load the normal config file, and then overwrite what we want to.
3+
require("tweaks.bobsmods.0_initial")
4+
5+
-- Now make any changes that are required.
6+
data.raw.recipe["sct-t4-bioprocessor"].ingredients =
7+
{
8+
{type="item", name="alien-artifact", amount=1},
9+
{type="item", name="processing-unit", amount=10},
10+
{type="item", name="copper-plate", amount=20},
11+
{type="item", name="gold-plate", amount=20}
12+
},

tweaks/complexAlienBM/1_update.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-- This modifies the standard config for Bobingabout's Mods.
2+
-- So here we just load the normal config file, and then overwrite what we want to.
3+
require("tweaks.bobsmods.1_update")

tweaks/complexAlienBM/2_final.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-- This modifies the standard config for Bobingabout's Mods.
2+
-- So here we just load the normal config file, and then overwrite what we want to.
3+
require("tweaks.bobsmods.2_final")

tweaks/vanilla/0_initial.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
-- Firstly, set the options for using the new intermediaries, as well as using the new tiered labs.
22
require("tweaks.newintermediates")
3-
require("tweaks.tweakedsciencepacks")
43

54

65
data:extend({

tweaks/vanilla/2_final.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
-- Use the new labs new tiered labs.
22
require("tweaks.newlabs")
3+
require("tweaks.tweakedsciencepacks")

0 commit comments

Comments
 (0)