Skip to content

Commit

Permalink
🐛 Fix ct.place.meet returning duplicated references to copies if quer…
Browse files Browse the repository at this point in the history
…ying for multiple obstacles
  • Loading branch information
CosmoMyzrailGorynych committed Jan 2, 2021
1 parent 2fcb53b commit 7b740f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/data/ct.libs/place/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,9 @@
}
return array[i];
}
results.push(array[i]);
if (!results.includes(array[i])) {
results.push(array[i]);
}
}
}
}
Expand Down

0 comments on commit 7b740f2

Please sign in to comment.