Naufulglebunusilo


Ever wanted a moshpit of every planet in one? Now here it is!

Content
3 months ago
2.0
11.3K
Environment

b Weird Mod Combo problem

7 months ago

Using Planet mods Maraxsis and Naufulglebunusilo.

Maraxsis requires Spidertron Patrols, which requires Spidertron Enhancements. Somehow when Naufulglebunusilo generates its surface, it uses Unknown Key tile-name.ammonia-lava. These tiles can not be paved over by anything.

I tried to get AI assistance in writing a fix,

if data.raw["tile"]["ammonia-lava"] then
data.raw["tile"]["ammonia-lava"].can_be_replaced = true
data.raw["tile"]["ammonia-lava"].collision_mask = {"ground-tile"}
end

However when I made that fix into a custom mod, it failed to start citing "Spidertron Enhancements" as the reason. I am NOT a coder and have no idea on any of this....Just reporting it in case someone smarter knows whats up.

7 months ago

Can you give your entire mod list?

4 months ago

I'm no coder either, but I was able to make it so that Naufulglebunusilo's special 'lava' ammonia could be paved with Foundation by simply adding

table.insert(data.raw["item"]["foundation"].place_as_tile.tile_condition, "ammonia-lava");

At the end of ammonia_tile.lua. I imagine you could just make it read...

table.insert(data.raw["item"]["ice-platform"].place_as_tile.tile_condition, "ammonia-lava");

To make it use the normal Ice platform logic instead.

New response