Dredgeworks

by Kubius

Ore patches now spill over into the sea as submerged variants. Dredge them up with new floating hardware, and build deeper into the blue with water-placeable refined concrete.

Content
9 days ago
1.1 - 2.0
3.84K
Logistics Environment Mining

b [Fixed] Renai Transportation

10 months ago
(updated 10 months ago)

crashes on launch with renai.

error message:
"Error in assignID: iteme with name 'PlayerLauncher' does not exist.
source: floating-PlayerLauncher (recipe)"

changing
"{inserter_entry[3], 1},"
to
"{inserter_entry[4], 1},"
fixes the problem.

edit: prototype/recipe.lua : around line 47ish
renai inserters dont work well, but at least it avoids the crash lol

10 months ago
(updated 10 months ago)

Looking into a more formal compatibility fix. RT tampers pretty heavily with inserters, so no ETA.

4 months ago

I've added a means to disable inserter flotation through a config setting instead of having to tamper with the code; with the setting activated, Renai Transportation can be introduced without error. You'll have to turn on the setting and then include RT, but it works.

a month ago

i'm playing with all the overhauls modpack and adding this to a separate mod fixes the issue without sacrificing all the other floating inserters

-- fix dredgeworks + renai
data.raw.recipe["floating-PlayerLauncher"] = nil
data.raw.recipe["floating-RTThrower-PrimerThrower"] = nil
data.raw.recipe["rf-floating-PlayerLauncher"] = nil
data.raw.recipe["rf-floating-RTThrower-PrimerThrower"] = nil

krastorio.technologies.removeEffects("floating-logistics-technology",{
{ type = "unlock-recipe", recipe = "floating-PlayerLauncher" },
{ type = "unlock-recipe", recipe = "rf-floating-PlayerLauncher" },
{ type = "unlock-recipe", recipe = "floating-RTThrower-PrimerThrower" },
{ type = "unlock-recipe", recipe = "rf-floating-RTThrower-PrimerThrower" }
})

New response