Skip to content

Commit

Permalink
priority set to 0 on 541
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGuild-us-ignite committed Oct 24, 2024
1 parent 10cd639 commit 8dd84e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/cultures-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ window.Cultures = (function () {

for (const culture of cultures) {
if (!culture.i || culture.removed || culture.lock) continue;
queue.push({cellId: culture.center, cultureId: culture.i, priority: 0}, priority);
queue.push({cellId: culture.center, cultureId: culture.i, priority: 0}, 0);
}

while (queue.length) {
Expand Down

0 comments on commit 8dd84e1

Please sign in to comment.