1
0
mirror of https://github.com/Wyrrrd/bbr-fix.git synced 2026-04-24 06:33:17 +02:00

Initial release

This commit is contained in:
Wyrrrd
2020-03-19 23:05:23 +01:00
parent 0d049160c9
commit afcb091b3d
9 changed files with 54 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
if settings.startup["bbr_fix_expensive"].value then
data.raw["recipe"]["bbr-rail-wood"].ingredients = {{"rail",1},{"wood",5}}
data.raw["recipe"]["bbr-rail-iron"].ingredients = {{"rail",1},{"iron-plate",5}}
data.raw["recipe"]["bbr-rail-brick"].ingredients = {{"rail",1},{"stone-brick",5}}
else
data.raw["recipe"]["bbr-rail-wood"].ingredients = {{"rail",1},{"wood",1}}
data.raw["recipe"]["bbr-rail-iron"].ingredients = {{"rail",1},{"iron-plate",1}}
data.raw["recipe"]["bbr-rail-brick"].ingredients = {{"rail",1},{"stone-brick",1}}
end