mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
- changed custom module pruning iteration to run from #elements to 1 instead so that table.remove doesn't screw itself
This commit is contained in:
@ -105,7 +105,7 @@ function IceCore.prototype:Enable()
|
|||||||
|
|
||||||
-- go through the list of loaded elements that don't have associated settings and dump them
|
-- go through the list of loaded elements that don't have associated settings and dump them
|
||||||
toRemove = {}
|
toRemove = {}
|
||||||
for i = 1, table.getn(self.elements) do
|
for i = #self.elements, 1, -1 do
|
||||||
if not self.settings.modules[self.elements[i]:GetElementName()] then
|
if not self.settings.modules[self.elements[i]:GetElementName()] then
|
||||||
toRemove[#toRemove + 1] = i
|
toRemove[#toRemove + 1] = i
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user