aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/jarvis.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/jarvis.js b/examples/jarvis.js
index 2516687..76e8aa1 100644
--- a/examples/jarvis.js
+++ b/examples/jarvis.js
@@ -107,7 +107,7 @@ function notifRefresh(){
}
function timect(){
- writes.enqueue(...notifRefresh());
+ writes.enqueue(notifRefresh());
minsUp++;
setTimeout(timect, 60*1000);
}
@@ -124,7 +124,7 @@ function protectArea(send, tiles, locs){
inter.comb(tile, comb.unmask);
let diff = notif.copy(); // Actually diffs notify with the errant text
diff.comb(inter, comb.sub);
- writes.enqueue(...diff.towrite())
+ writes.enqueue(diff.towrite())
// Mask the tile
let newtile = notif.copy();
newtile.comb(tile, comb.mask);
@@ -159,6 +159,6 @@ function respond(coord){
console.log('called at', coord);
callct += 1;
response.loc = coord;
- writes.enqueue(...response.towrite().concat(notifRefresh()));
+ writes.enqueue(response.towrite().concat(notifRefresh()));
read.update(response);
}