fix: table.remove function does not work with random indexes #1801
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
A função table.remove não funciona com índices aleatórios ..
Ela funcionaria apenas em tabelas com índices sequenciais:
tabela = { [1] = "teste1", [2] = "teste2", }
table.remove(tabela, 1)
Ou funcionaria em tabelas sem os índices:
tabela = { {"teste1"}, {"teste2"} }
table.remove(tabela, 1)
Neste caso do globalStorageTable onde os índices são as chaves, e elas são aleatórias deve apenas definir o nil ...
tabela = { [999] = "teste1", [12345] = "teste2", }
tabela[999] = nil