like last commit

pull/171/head
Aevann 2023-07-14 14:23:36 +03:00
parent dbe4d7c42a
commit f705a1c205
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ const shit_num = document.getElementById('shit_num').value
new BugController({
imageSprite: "/i/fly-sprite.webp",
canDie: false,
minBugs: Math.min(MINFLIES + (shit_num * 2), 50),
maxBugs: Math.min(MAXFLIES + (shit_num * 2), 100),
minBugs: Math.min(MINFLIES + (shit_num * 2), 150),
maxBugs: Math.min(MAXFLIES + (shit_num * 2), 150),
mouseOver: "multiply"
});

View File

@ -3,7 +3,7 @@ const fireflies_num = document.getElementById('fireflies_num').value
new BugController({
imageSprite: "/i/fireflies.webp",
canDie: false,
minBugs: Math.min(MINFLIES + (fireflies_num * 2), 50),
maxBugs: Math.min(MAXFLIES + (fireflies_num * 2), 100),
minBugs: Math.min(MINFLIES + (fireflies_num * 2), 150),
maxBugs: Math.min(MAXFLIES + (fireflies_num * 2), 150),
mouseOver: "multiply"
});