Revert "Make cursormarsey a little bit less frantic (more idle time, more idle radius) (#143)"

This reverts commit be564f48d0.
pull/146/head
Aevann 2023-05-05 09:44:25 +03:00
parent b0eea9b223
commit 1cd392c228
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 < 160) {
if (distance < cursormarseySpeed || distance < 48) {
idle();
return;
}