@ -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;
@ -223,7 +223,7 @@ public class LootManager {
int min = mobLevel * 2;
int min = (int)(4.469 * mobLevel - 3.469);
int roll = ThreadLocalRandom.current().nextInt(max-min) + min;
return roll;