This commit is contained in:
2025-08-04 02:17:50 +05:30
parent 3dc5aeee4e
commit df3bd8adbe
13 changed files with 42 additions and 42 deletions

View File

@@ -86,7 +86,7 @@ function App() {
}
if (ownedFriendBoost > 0 && friendBoostUpgrade && friendBoostUpgrade.mascotTiers) {
const baseInterval = 10000; // Increased base interval for less frequent spawns
const baseInterval = 12000; // Increased base interval for less frequent spawns
const minInterval = 1000; // Increased min interval
const interval = Math.max(minInterval, baseInterval / (1 + ownedFriendBoost * 0.2)); // Adjusted scaling
console.log(`Spawning mascots every ${interval} ms for friendBoost level ${ownedFriendBoost}`);