Skip to content

Commit

Permalink
Lower crate droprates a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
gc committed Mar 16, 2024
1 parent 85c0098 commit b740676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/util/handleTripFinish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ const tripFinishEffects: TripFinishEffect[] = [
}
dropratePerMinute = Math.ceil(dropratePerMinute / 3);
dropratePerMinute = Math.ceil(dropratePerMinute / 5.5);
dropratePerMinute = Math.ceil(dropratePerMinute / 10);
dropratePerMinute = Math.ceil(dropratePerMinute / 2);
if (user.isIronman) {
dropratePerMinute = Math.ceil(dropratePerMinute / 3);
}
Expand Down

0 comments on commit b740676

Please sign in to comment.