Fluid Void Extra


A pipe to void fluids.

Content
1 year, 19 days ago
0.15 - 2.0
11.3K
Fluids

b No MP support

1 year, 10 days ago

This mod has MP issues. Unable to connect if active. I don't know the exact cause. I didn't find anything in the log either :(

1 year, 10 days ago

Will look into it, may take a day or two of I find the bug

11 months ago

yer i'm having problems in MP that when i 1st boot the server i can connect, after i disconnect and reconnect it causes a desync for me and anyone else that tries

10 months ago

Hint: He did not look into it.

7 months ago
(updated 7 months ago)

Hint: He did not look into it.

thats what i wanted to say lol

7 months ago

The fix is to edit the control file so instead of
function getRandomTick()
if not randomTickValue then
randomTickValue = math.random(2, 59)
end
return randomTickValue
end

it says
function getRandomTick()
if not randomTickValue then
local rng = game.create_random_generator()
randomTickValue = rng(2, 59)
end
return randomTickValue
end

New response