Skip to content

Commit

Permalink
fix: #970
Browse files Browse the repository at this point in the history
  • Loading branch information
Azgaar committed Aug 6, 2023
1 parent b3e2aa0 commit c486506
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7925,7 +7925,7 @@
<script src="utils/commonUtils.js?v=1.89.29"></script>
<script src="utils/arrayUtils.js"></script>
<script src="utils/colorUtils.js"></script>
<script src="utils/graphUtils.js?v=1.88.02"></script>
<script src="utils/graphUtils.js?v=1.90.01"></script>
<script src="utils/nodeUtils.js"></script>
<script src="utils/numberUtils.js?v=1.89.08"></script>
<script src="utils/polyfills.js"></script>
Expand Down
1 change: 1 addition & 0 deletions utils/graphUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ function find(x, y, radius = Infinity) {

// return closest cell index
function findCell(x, y, radius = Infinity) {
if (!pack.cells?.q) return;
const found = pack.cells.q.find(x, y, radius);
return found ? found[2] : undefined;
}
Expand Down
2 changes: 1 addition & 1 deletion versioning.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

// version and caching control
const version = "1.90.00"; // generator version, update each time
const version = "1.90.01"; // generator version, update each time

{
document.title += " v" + version;
Expand Down

0 comments on commit c486506

Please sign in to comment.