increase cursormarsey distance

pull/148/head
Aevann 2023-05-10 19:13:25 +03:00
parent 14bdfc28a8
commit 385d724121
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ function frame() {
const diffY = cursormarseyPosY - mousePosY;
const distance = Math.sqrt(diffX ** 2 + diffY ** 2);
if (distance < cursormarseySpeed || distance < 48) {
if (distance < cursormarseySpeed || distance < 100) {
idle();
return;
}