Skip to content

Commit

Permalink
Add allow_as_intermediate to all recipes
Browse files Browse the repository at this point in the history
Signed-off-by: Jelmergu <[email protected]>
  • Loading branch information
Jelmergu committed Feb 2, 2018
1 parent bd9f39d commit 0af9d90
Show file tree
Hide file tree
Showing 27 changed files with 26 additions and 11 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
###0.2.8
- Fixed that recipes were used as intermediates
- Returned the crafting time to the correct time

###0.2.7
- Added in-game changelog
- Fixed that burner to electric drill was used as intermediate of burner mining drill recipe

###0.2.6
- Added in-game changelog
- Fixed that burner mining drill used the stone furnace from burner to electric drill
recipe as its intermediate(#1)

### 0.2.5
- Update to 0.16
- Corrected locales for pistol to (combat) shotgun
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ function Jelmergu:addRecipe(recipe)
recipe.order = self.alphabet[self.currentOrder]
self.currentOrder = self.currentOrder+1
end
recipe.allow_as_intermediate = false
recipe.subgroup = "upgrade-machines"
recipe.type = "recipe"
recipe.main_product = recipe.main_product and recipe.main_product or ""
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
---------------------------------------------------------------------------------------------------
Version: 0.2.8
Date: 02. 02. 2018
Fixes:
- Fixed that recipes were used as intermediates
- Returned the crafting time to the correct time
---------------------------------------------------------------------------------------------------
Version: 0.2.7
Date: 15. 01. 2018
General:
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "upgrade-machines",
"version": "0.2.7",
"version": "0.2.8",
"title": "Upgrade Machines",
"author": "Jelmergu",
"contact": "",
"homepage": "",
"factorio_version": "0.16",
"dependencies": ["base >= 0.16", "? bobelectronics >= 0.15.2", "? bobplates >= 0.15.12"],
"factorio_version": "0.16.22",
"dependencies": ["base >= 0.16.22", "? bobelectronics >= 0.15.2", "? bobplates >= 0.15.12"],
"description": "This mod adds recipes to upgrade all burner stage machines to their next tier machine"
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Jelmergu:addRecipe(
},
},
main_product = "electric-mining-drill",
energy_required = 1.1,
energy_required = 1,
enabled = true
}
)
Expand All @@ -42,7 +42,7 @@ Jelmergu:addRecipe(
{ "burner-inserter", 1 }
},
result = "inserter",
energy_required = 1.1,
energy_required = 1,
enabled = true
}
)
Expand All @@ -56,7 +56,7 @@ Jelmergu:addRecipe(
{ "stone-brick", 9 }
},
result = "steel-furnace",
energy_required = 3.1,
energy_required = 3,
}
)

Expand All @@ -69,7 +69,7 @@ Jelmergu:addRecipe(
{ "advanced-circuit", 5 }
},
result = "electric-furnace",
energy_required = 5.1,
energy_required = 5,
}
)

Expand All @@ -82,7 +82,7 @@ Jelmergu:addRecipe(
{ "pistol", 1},
},
result = "submachine-gun",
energy_required = 10.1,
energy_required = 10,
enabled = true
}
)
Expand All @@ -98,7 +98,7 @@ Jelmergu:addRecipe(
{ "pistol", 1},
},
result = "shotgun",
energy_required = 10.1,
energy_required = 10,
enabled = true
}
)
Expand All @@ -114,7 +114,7 @@ Jelmergu:addRecipe(
{ "pistol", 1},
},
result = "combat-shotgun",
energy_required = 10.1,
energy_required = 10,
}
)

0 comments on commit 0af9d90

Please sign in to comment.