diff options
-rw-r--r-- | examples/jarvis.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/jarvis.js b/examples/jarvis.js index 00b4610..8ade4a1 100644 --- a/examples/jarvis.js +++ b/examples/jarvis.js @@ -36,7 +36,7 @@ function identity(sender){ var expire = {}; main.on('tileUpdate', (send, source, tiles) => { - // if (send == sender) return; ::: this may lead to issues later, but for now is used to count its own updates + if (send == sender) return; //this may lead to issues later, but for now is used to count its own updates let locs = tilekeys(tiles); for (let i=0; i<locs.length; i++){ |