Remove afk delay on mobile

This commit is contained in:
Idrees Hassan
2025-10-22 21:46:12 -04:00
parent ab33090eb6
commit 5860171184
3 changed files with 3 additions and 3 deletions

2
dist/birb.js vendored
View File

@@ -32,7 +32,7 @@ const HOP_SPEED = CONFIG.hopSpeed;
const FLY_SPEED = CONFIG.flySpeed;
const HOP_DISTANCE = CONFIG.hopDistance;
// Time in milliseconds until the user is considered AFK
const AFK_TIME = debugMode ? 0 : 1000 * 30;
const AFK_TIME = (debugMode || isMobile()) ? 0 : 1000 * 30;
const SPRITE_HEIGHT = 32;
const MENU_ID = "birb-menu";
const MENU_EXIT_ID = "birb-menu-exit";