regression formula for min mob loot roll

This commit is contained in:
2023-07-27 19:06:31 -05:00
parent a5fe5ece50
commit 1fa5019ddb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -495,7 +495,7 @@ public class InfoCmd extends AbstractDevCmd {
if(max > 321){
max = 321;
}
int min = targetMob.level * 2;
int min = (int)(4.469 * targetMob.level - 3.469);
output += "Min Loot Roll = " + min;
output += "Max Loot Roll = " + max;
break;