forked from VoxeLibre/VoxeLibre
Merge pull request 'Fix items floating into the air under rare circumstances' (#2553) from fix_item_floating into master
Reviewed-on: MineClone2/MineClone2#2553 Reviewed-by: cora <cora@noreply.git.minetest.land>
This commit is contained in:
commit
1bc082ee4f
|
@ -847,8 +847,7 @@ minetest.register_entity(":__builtin:item", {
|
||||||
elseif self._flowing == true and not is_in_water and not is_floating then
|
elseif self._flowing == true and not is_in_water and not is_floating then
|
||||||
-- Disable flowing physics if not on/in flowing liquid
|
-- Disable flowing physics if not on/in flowing liquid
|
||||||
self._flowing = false
|
self._flowing = false
|
||||||
local pos = self.object:get_pos()
|
disable_physics(self.object, self, true)
|
||||||
disable_physics(self.object, self, false, false)
|
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue