Skip to content

Commit

Permalink
Merge pull request #263 from ivolff/master
Browse files Browse the repository at this point in the history
fix for DynamicGrid.get_all_pos
  • Loading branch information
Insality committed Apr 23, 2024
2 parents 0e9445b + 8741e6c commit e2108a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion druid/extended/dynamic_grid.lua
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ end
function DynamicGrid.get_all_pos(self)
local result = {}
for i, node in pairs(self.nodes) do
table.insert(result, gui.get_position(node))
table.insert(result, gui.get_position(node.node))
end

return result
Expand Down

0 comments on commit e2108a5

Please sign in to comment.