Skip to content

Commit 1ce6e33

Browse files
committed
Use temporary copy of P1cards to avoid overwriting blank spaces
Caused character duplication occasionally (on website version or when auto-sorting disabled)
1 parent ccf394d commit 1ce6e33

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

states/DeckeditState.lua

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,12 @@ function DeckeditState:sortInventory(reload)
5959
end
6060

6161
table.sort(P1cards,compareCharacterStrength)
62+
Temporary = {}
6263
for k, pair in pairs(P1cards) do
63-
P1cards[k-1] = pair
64+
Temporary[k-1] = pair
6465
end
65-
P1cards[#P1cards] = nil
66+
P1cards = Temporary
67+
Temporary = nil
6668
bitser.dumpLoveFile('Player 1 cards.txt',P1cards)
6769
if reload ~= false then
6870
self:updateCardsOnDisplay()

0 commit comments

Comments
 (0)