Skip to content

Commit

Permalink
Adjust forestry events rate (#6266)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arodab authored Dec 26, 2024
1 parent 44fdd0c commit f660cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/minions/woodcuttingActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async function handleForestry({ user, duration, loot }: { user: MUser; duration:
const eggChance = Math.ceil(2700 - ((chanceWcLevel - 1) * (2700 - 1350)) / 98);
const whistleChance = Math.ceil(90 - ((chanceWcLevel - 1) * (90 - 45)) / 98);

perTimeUnitChance(duration, 20, Time.Minute, async () => {
perTimeUnitChance(duration, 10, Time.Minute, async () => {
const eventIndex = randInt(0, ForestryEvents.length - 1);
const event = ForestryEvents[eventIndex];
let eventRounds = 0;
Expand Down

0 comments on commit f660cc5

Please sign in to comment.