Make redstone not index if already in index table

master
oilboi 2020-06-26 09:30:57 -04:00
parent c09d4a16e8
commit b971acae90
1 changed files with 3 additions and 0 deletions

View File

@ -195,6 +195,9 @@ end
function redstone.collect_info(pos)
if r_index[pos.x] and r_index[pos.x][pos.y] and r_index[pos.x][pos.y][pos.z] then
return
end
localredstone.injector(pos)
localredstone.collector(pos)
end