From 492af8740f40cb3370dcd11b4f5f27306f21c7fd Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Wed, 8 Jan 2020 21:07:11 -0500 Subject: queue.enqueue passed as array --- examples/jarvis.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/jarvis.js') 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); } -- cgit