Fluid Void Extra


A pipe to void fluids.

Content
10 months ago
0.15 - 2.0
10.8K
Fluids

b No MP support

9 months 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 :(

9 months ago

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

8 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

7 months ago

Hint: He did not look into it.

5 months ago
(updated 5 months ago)

Hint: He did not look into it.

thats what i wanted to say lol

5 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