Implement bonus potential level monolith talents

This commit is contained in:
Melledy
2025-12-05 02:12:29 -08:00
parent 880f0d1d7d
commit 6974631601
5 changed files with 118 additions and 41 deletions

View File

@@ -175,6 +175,10 @@ public class Utils {
}
public static boolean randomChance(double chance) {
if (chance <= 0) {
return false;
}
return ThreadLocalRandom.current().nextDouble() < chance;
}