regression calculator usage
This commit is contained in:
@@ -219,9 +219,9 @@ public class LootManager {
|
||||
return outItem;
|
||||
}
|
||||
private static int TableRoll(int mobLevel){
|
||||
int max = 200 + (mobLevel * 3);
|
||||
if(max > 320){
|
||||
max = 320;
|
||||
int max = (int)(4.882 * mobLevel + 121.0);
|
||||
if(max > 321){
|
||||
max = 321;
|
||||
}
|
||||
int min = mobLevel * 2;
|
||||
int roll = ThreadLocalRandom.current().nextInt(max-min) + min;
|
||||
|
||||
Reference in New Issue
Block a user