mirror of
https://github.com/Sokomine/markers.git
synced 2024-11-14 06:10:25 +01:00
fixed bug related to sorting areas
This commit is contained in:
parent
30c7fea0cd
commit
f9ede8b64d
|
@ -3,7 +3,7 @@
|
|||
|
||||
-- Temporary compatibility function - see minetest PR#1180
|
||||
if not vector.interpolate then
|
||||
vector.interpolate = function(pos1, pos2)
|
||||
vector.interpolate = function(pos1, pos2, factor)
|
||||
return {x = pos1.x + (pos2.x - pos1.x) * factor,
|
||||
y = pos1.y + (pos2.y - pos1.y) * factor,
|
||||
z = pos1.z + (pos2.z - pos1.z) * factor}
|
||||
|
|
Loading…
Reference in New Issue
Block a user