Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiplacon authored Sep 2, 2022
1 parent 7d8b157 commit 225d375
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---------------------------------------------------------------------------------------------------
Version: 1.1.0
Date: 9/1/2022
Version: 1.1.1
Date: 9/2/2022
Additions:
- Programmable Zipline Controller and Zipline Terminal. These can be used to automatically move you around the powerline highway
- Pressing Interact (default F) on Bounce Pads and Directed Bounce Pads will now toggle their bounce ranges between 5, 10, and 15 tiles
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": "RenaiTransportation",
"version": "1.1.0",
"version": "1.1.1",
"title": "Renai Transportation",
"author": "Kiplacon",
"factorio_version": "1.1",
Expand Down
2 changes: 1 addition & 1 deletion prototypes/technology.lua
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ if (settings.startup["RTZiplineSetting"].value == true) then
recipe = "RTZiplineTerminalRecipe"
}
},
prerequisites = {"RTZiplineTech", "electric-energy-distribution-1"},
prerequisites = {"RTZiplineTech", "electric-energy-distribution-1", "concrete"},
unit =
{
count = 150,
Expand Down
7 changes: 4 additions & 3 deletions prototypes/zipline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,13 @@ local RTZiplineTerminalRecipe =
type = "recipe",
name = "RTZiplineTerminalRecipe",
enabled = false,
energy_required = 0.5,
energy_required = 3,
ingredients =
{
{"medium-electric-pole", 1},
{"steel-plate", 40},
{"electronic-circuit", 10}
{"electronic-circuit", 10},
{"steel-plate", 20},
{"concrete", 25}
},
result = "RTZiplineTerminalItem"
}
Expand Down

0 comments on commit 225d375

Please sign in to comment.