Skip to content

Commit

Permalink
some missing prerequisites
Browse files Browse the repository at this point in the history
  • Loading branch information
LovelySanta committed Oct 29, 2020
1 parent 36c62a3 commit 3f5b859
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions angelsbioprocessing/changelog.txt
Expand Up @@ -11,6 +11,7 @@ Date: ??
- Some minor localisation changes to unify angels localisation across mods (372)
- Fixed the plant growing 1 & 2 did not show their result amounts correctly
- Fixed plant processing recipes 1 & 2 did not show there recipe name correctly
- Fixed missing prerequisite on the Wood processing 2 technology
---------------------------------------------------------------------------------------------------
Version: 0.7.14
Date: 20.08.2020
Expand Down
Expand Up @@ -34,6 +34,7 @@ data:extend(
prerequisites =
{
"bio-wood-processing",
"angels-coal-processing"
},
effects =
{
Expand Down
2 changes: 2 additions & 0 deletions angelsrefining/changelog.txt
Expand Up @@ -15,6 +15,8 @@ Date: ??
- Fixed not being able to manually crush and processing trees with bob classes (366)
- Fixed some bobclasses are not startable in some configurations (394)
- Fixed bobs gem procesing were unlocked before gem crystallization (415)
- Fixed Advanced ore refining technology was missing a prerequisite on Slag processing 1
- Fixed Advanced ore refining 2 technology was missing a prerequisite on Geode processing 2
---------------------------------------------------------------------------------------------------
Version: 0.11.16
Date: 20.08.2020
Expand Down
8 changes: 5 additions & 3 deletions angelsrefining/prototypes/technology/refining-technology.lua
Expand Up @@ -76,7 +76,8 @@ data:extend(
icon = "__angelsrefining__/graphics/technology/ore-sorting.png",
icon_size = 128,
prerequisites = {
"ore-crushing"
--"ore-crushing",
"slag-processing-1"
},
effects = {
{
Expand Down Expand Up @@ -308,7 +309,8 @@ data:extend(
icon_size = 128,
prerequisites = {
"ore-floatation",
"advanced-ore-refining-1"
"advanced-ore-refining-1",
"geode-processing-2"
},
effects = {
{
Expand Down Expand Up @@ -365,7 +367,7 @@ data:extend(
icon_size = 256,
icon_mipmaps = 2,
prerequisites = {
"ore-crushing",
--"ore-crushing",
"geode-processing-1",
"slag-processing-1",
"water-washing-2"
Expand Down

0 comments on commit 3f5b859

Please sign in to comment.