Fix bug "Trouble with flycontroller #130"

This commit is contained in:
Joachim Stolberg 2023-04-27 19:42:05 +02:00
parent 86ff66684c
commit 9de42a5a66
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ function flylib.to_path(s, max_dist)
local tPath
local dist = 0
for _, line in ipairs(strsplit(s)) do
for _, line in ipairs(strsplit(s or "")) do
line = trim(line)
line = string.split(line, "--", true, 1)[1] or ""
if line ~= "" then

View File

@ -341,7 +341,7 @@ techage.ConstructionPlans["ta3_distiller"] = {
--
-- Chemical Reactor
--
local RBASE = {"techage_concrete.png", "techage:ta4_reactor_stand"}
local RBASE = {"techage_concrete.png", "techage:ta4_reactor_base"}
local STAND = {"techage_reactor_stand_side.png", "techage:ta4_reactor_stand"}
local REACT = {"techage_reactor_plan.png", "techage:ta4_reactor"}
local FILLR = {"techage_reactor_filler_plan.png", "techage:ta4_reactor_fillerpipe"}