Skip to content

Commit

Permalink
Merge pull request #34 from JohnTheCoolingFan/dev
Browse files Browse the repository at this point in the history
1.2.11
  • Loading branch information
JohnTheCoolingFan authored Jan 27, 2021
2 parents 258f085 + 69b2ece commit d5b837a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 1.2.11
Date: 27.01.2021
Fixes:
- Fixed Nuclear empowered Stack Inserter recipe not containing any nuclear metal (caused by a typo)
---------------------------------------------------------------------------------------------------
Version: 1.2.10
Date: 26.01.2021
Minor Features:
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "RandomFactorioThings",
"version": "1.2.10",
"version": "1.2.11",
"title": "Random Factorio Things",
"author": "JohnTheCoolingFan",
"contact": "https://discord.gg/grHVhE2",
Expand Down
2 changes: 1 addition & 1 deletion prototypes/recipe/recipe.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ table.insert(recipes, nuclear_long_handed_inserter)
local nuclear_stack_inserter = util.table.deepcopy(data.raw["recipe"]["stack-inserter"])
nuclear_stack_inserter.name = "nuclear-stack-inserter"
nuclear_stack_inserter.result = "nuclear-stack-inserter"
nuclear_stack_inserter.ingredietns = {{"nuclear-inserter", 1}, {"iron-gear-wheel", 5}, {"nuclear-metal", 10}, {"advanced-circuit", 5}}
nuclear_stack_inserter.ingredients = {{"nuclear-inserter", 1}, {"iron-gear-wheel", 5}, {"nuclear-metal", 10}, {"advanced-circuit", 5}}
table.insert(recipes, nuclear_stack_inserter)

local nuclear_stack_filter_inserter = util.table.deepcopy(data.raw["recipe"]["stack-filter-inserter"])
Expand Down

0 comments on commit d5b837a

Please sign in to comment.