diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-03-26 00:07:38 -0400 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-03-26 00:07:38 -0400 |
commit | 9634a1c6d79a93ab79c5354d2240ed11ad9abbe7 (patch) | |
tree | ec579b22851d7e91f6ac854ac414fbfe66a80351 /tools/search.js | |
parent | 7f3110ec388bdf6b72579b70a5736f3f53809de4 (diff) | |
parent | 183b38854c8efef2af9e4118060bc2dc4a84befc (diff) |
Merge branch 'master' into bulletbullet
Diffstat (limited to 'tools/search.js')
-rw-r--r-- | tools/search.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/search.js b/tools/search.js index 78e0ee7..e365214 100644 --- a/tools/search.js +++ b/tools/search.js @@ -78,7 +78,7 @@ function Search(){ // searchBlock should be a Space object. this.update = function(space){ // Must be a space w/ valid loc; allows overlay of some arbitrary text (in the space) mostly for recording updates from the server without directly cataloguing them let tiles = raster(space); // Returns a this.tiles-style binding: {'2,-3':Space object} - for (tile in tiles){ + for (let tile in tiles){ if (this.tiles[tile]) this.tiles[tile].comb(tiles[tile], comb.flip(comb.add)); else this.add(tile, tiles[tile]); } |