Skip to content

Commit

Permalink
add rich-iron processing for big-processing-machine
Browse files Browse the repository at this point in the history
  • Loading branch information
judos committed May 5, 2017
1 parent 7431164 commit 03b9565
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion source/data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ require "prototypes.harder-copper-processing"
require "prototypes.harder-coal"
require "prototypes.harder-stone"
require "prototypes.steel-dust"
require "prototypes.big-processing-machine"

require "prototypes.rich-copper-ore"
require "prototypes.rich-copper-processing"
require "prototypes.rich-iron-ore"
require "prototypes.rich-iron-processing"

require "prototypes.big-processing-machine"
1 change: 1 addition & 0 deletions source/locale/en/big-processing-machine-recipes.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
iron-slag-big=Fast slag processing
crushed-iron-big=Fast basic iron processing
pulverized-iron-big=Fast advanced iron processing
crushed-iron|rich-big=Fast advanced rich iron processing

copper-sludge-big=Fast sludge processing
copper-dust-big=Fast average copper processing
Expand Down
3 changes: 2 additions & 1 deletion source/prototypes/big-processing-machine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ local m1 = {
results={ {type="item",name="dirt",amount=1} }
}
local recipes = {["iron-slag"]=m1, ["crushed-iron"]=m1, ["pulverized-iron"]=m1,
["copper-sludge"]=m1, ["copper-dust"]=m1, ["copper-plate|sulfat"]=m1}
["copper-sludge"]=m1, ["copper-dust"]=m1, ["copper-plate|sulfat"]=m1,
["crushed-iron|rich"]=m1}

for name,mod in pairs(recipes) do
local recipe = deepcopy(data.raw.recipe[name])
Expand Down

0 comments on commit 03b9565

Please sign in to comment.