Conversation
| -- or for rendering the pipes purely decorative. | ||
| ]] | ||
| pipeworks.toggles.pipe_mode = "classic" | ||
| pipeworks.toggles.pipe_mode = "pressure" |
There was a problem hiding this comment.
how does that affect existing worlds?
There was a problem hiding this comment.
a lot of the things I'm doing (whether they're currently in this PR or not) are going to break things, but the old way things work is likely simple enough to auto-reinstate the original function
|
Current luacheck warnings: (i removed the ones about missing sounds good imo, didn't test that yet though |
|
feature set in desc updated |
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
| if core.get_modpath("bucket") then | ||
| buckets.air = "bucket:bucket_empty" | ||
| buckets.water = "bucket:bucket_water" | ||
| buckets.river_water = "bucket:bucket_river_water" | ||
| buckets.lava = "bucket:bucket_lava" | ||
| elseif core.get_modpath("mcl_buckets") then | ||
| buckets.air = "mcl_buckets:bucket_empty" | ||
| buckets.water = "mcl_buckets:bucket_water" | ||
| buckets.river_water = "mcl_buckets:bucket_river_water" | ||
| buckets.lava = "mcl_buckets:bucket_lava" | ||
| end |
There was a problem hiding this comment.
this should come from xcompat
There was a problem hiding this comment.
should be done
(riverwater & lava buckets don't have xcompat entries)
|
i have only skimmed this code, but would it be possible to break parts of this pr off and merge them in? as this is quite huge |
oddly enough, xcompat doesn't do anything with riverwater and lava
"Deprecate flowing_logic.lua for classic flow logic Mark the file as deprecated due to new flow logic requirements." - copilot
autocrafter fluid support
creative fluid source
trashcan acting as fluid void
flow sensor acting as a pressure gauge (shows fluid type too)
multiple fluid types (no mixing, but there is displacement)
| has custom fluid registration
| updating existing pump and drains to support multiple fluids
| per fluid "finite" config
(important detail: flow logic default set to
"pressure"instead of"classic")