Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Malibu-Stacey committed Nov 3, 2023
1 parent b53a3b2 commit a6aff5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ void IOTMCargoCultistShortsGenerateResource(ChecklistEntry [int] resource_entrie

boolean [int] empty_pockets;
string [int] empty_pocket_list = split_string(get_property("cargoPocketsEmptied"), ",");
foreach pocket in split_string(get_property("cargoPocketsEmptied"), ",") {
empty_pockets[to_int(empty_pocket_list[i])] = true;
foreach _, pocket in empty_pocket_list {
empty_pockets[to_int(pocket)] = true;
}

string [int] options;
Expand Down

0 comments on commit a6aff5a

Please sign in to comment.