mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-18 00:51:06 +01:00
Fix undeclared global in mcl_minecarts
This commit is contained in:
parent
547080bd98
commit
7cfef25dfe
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ local function register_entity(entity_id, mesh, textures, drop, on_rightclick, o
|
|||
if not rou_pos then
|
||||
rou_pos = vector.round(pos)
|
||||
end
|
||||
rou_old = vector.round(self._old_pos)
|
||||
local rou_old = vector.round(self._old_pos)
|
||||
if not node then
|
||||
node = minetest.get_node(rou_pos)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue