use get_node more selden

This commit is contained in:
HybridDog 2014-08-31 14:49:25 +02:00
parent 06cfcc90fe
commit f6629da1ba
1 changed files with 7 additions and 2 deletions

View File

@ -5,11 +5,16 @@ local last_tab
local function get_nodes(pos)
local rnd_pos = vector.round(pos)
local t = tonumber(os.clock())
if vector.equals(rnd_pos, lastpos)
local tmp = vector.equals(rnd_pos, lastpos)
if tmp
and t-time < 10 then
return last_tab
end
time = t
if not tmp then
time = t+10
else
time = t
end
lastpos = rnd_pos
local tab,n = {},1
for i = -1,1,2 do