Skip to content

Commit

Permalink
adjusted Average Damage drop
Browse files Browse the repository at this point in the history
  • Loading branch information
Grzybol committed Apr 19, 2024
1 parent c36a290 commit 5cc5a44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public static String dropAverageDamage() {
// Używamy funkcji wykładniczej do zmniejszenia prawdopodobieństwa wyższych wartości
double x = -Math.log(random.nextDouble()) / 10.0; // Dostosuj parametr 10.0, aby zmienić rozkład
//double y = random.
int bonus = (int) Math.round(x * 40); // Skalowanie wyniku
int bonus = (int) Math.round(x * 60); // Skalowanie wyniku

// Ograniczamy wartość bonusu do maksymalnie 60%
bonus = Math.min(bonus, 60);
Expand Down

0 comments on commit 5cc5a44

Please sign in to comment.