From 0d5812e596de066c5d01a6a15d2c6f0292382566 Mon Sep 17 00:00:00 2001 From: SteveBloX Date: Sat, 3 Feb 2024 10:46:10 +0100 Subject: [PATCH] slow down bg --- background.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/background.js b/background.js index f76d6c8..5ea25e6 100644 --- a/background.js +++ b/background.js @@ -1,7 +1,7 @@ // From https://codepen.io/tahazsh/pen/gOqNZyw -const MIN_SPEED = 1.5; -const MAX_SPEED = 3.2; +const MIN_SPEED = 0.5; +const MAX_SPEED = 0.7; function randomNumber(min, max) { return Math.random() * (max - min) + min;