Fix regression of item movement in water transport streams.

This commit is contained in:
MysticTempest 2022-08-19 06:53:26 -05:00
parent 4032cbe943
commit 6cbedd408e
1 changed files with 1 additions and 1 deletions

View File

@ -847,7 +847,7 @@ minetest.register_entity(":__builtin:item", {
elseif self._flowing == true and not is_in_water and not is_floating then
-- Disable flowing physics if not on/in flowing liquid
self._flowing = false
disable_physics(self.object, self, true)
enable_physics(self.object, self, true)
return
end