Skip to content

Commit

Permalink
Version 0.12.11
Browse files Browse the repository at this point in the history
Changelog: * Fixed bug with Natural Evolution. Red science pack recipe wasn't being set correctly.
  • Loading branch information
UberWaffe committed Dec 20, 2015
1 parent 51b88be commit c12feb5
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 3 deletions.
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ScienceCostTweaker",
"version": "0.12.10",
"version": "0.12.11",
"title": "ScienceCostTweaker Mod",
"author": "UberWaffe",
"dependencies": ["base >= 0.12.0","? bobelecoveride >= 0.12.0","? UberTweaks >= 0.0.1", "? peacemod"],
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion tweaks/bobsmods/0_initial.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ end
if (bobIsAbout == true) then
-- Firstly, set the options for using the new intermediaries, as well as using the new tiered labs.
require("tweaks.newintermediates")
require("tweaks.tweakedsciencepacks")

-- Make resin craftable by hand, so that we can use it in science pack crafting.
data.raw.recipe["bob-resin-wood"].category = "crafting"
Expand Down
10 changes: 10 additions & 0 deletions tweaks/bobsmods/2_final.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,17 @@ end
if (bobIsAbout == true) then
-- Use the new labs new tiered labs.
require("tweaks.newlabs")
require("tweaks.tweakedsciencepacks")

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

-- Change the recipe for Science-Pack-4 (Dark Blue).
data.raw.recipe["science-pack-4"].ingredients =
{
{"processing-unit", 1},
{"express-transport-belt", 1},
{"silicon-nitride", 1},
{"lithium-ion-battery", 1}
}
end
12 changes: 12 additions & 0 deletions tweaks/complexAlienBM/0_initial.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
-- This modifies the standard config for Bobingabout's Mods.
-- So here we just load the normal config file, and then overwrite what we want to.
require("tweaks.bobsmods.0_initial")

-- Now make any changes that are required.
data.raw.recipe["sct-t4-bioprocessor"].ingredients =
{
{type="item", name="alien-artifact", amount=1},
{type="item", name="processing-unit", amount=10},
{type="item", name="copper-plate", amount=20},
{type="item", name="gold-plate", amount=20}
},
3 changes: 3 additions & 0 deletions tweaks/complexAlienBM/1_update.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- This modifies the standard config for Bobingabout's Mods.
-- So here we just load the normal config file, and then overwrite what we want to.
require("tweaks.bobsmods.1_update")
3 changes: 3 additions & 0 deletions tweaks/complexAlienBM/2_final.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- This modifies the standard config for Bobingabout's Mods.
-- So here we just load the normal config file, and then overwrite what we want to.
require("tweaks.bobsmods.2_final")
1 change: 0 additions & 1 deletion tweaks/vanilla/0_initial.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
-- Firstly, set the options for using the new intermediaries, as well as using the new tiered labs.
require("tweaks.newintermediates")
require("tweaks.tweakedsciencepacks")


data:extend({
Expand Down
1 change: 1 addition & 0 deletions tweaks/vanilla/2_final.lua
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
-- Use the new labs new tiered labs.
require("tweaks.newlabs")
require("tweaks.tweakedsciencepacks")

0 comments on commit c12feb5

Please sign in to comment.