1
0
mirror of https://github.com/HybridDog/builtin_item.git synced 2024-11-14 14:30:37 +01:00

use get_node more selden

This commit is contained in:
HybridDog 2014-08-31 14:49:25 +02:00
parent 06cfcc90fe
commit f6629da1ba

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