v0.6.5c: fixed an incorrect comment in ring of wealth

This commit is contained in:
Evan Debenham 2018-05-18 18:46:38 -04:00
parent 77f64943c1
commit 0cac7aed29

View File

@ -118,7 +118,6 @@ public class RingOfWealth extends Ring {
return items; return items;
} }
//caps at a 50% bonus
private static float dropProgression( Char target, int tries ){ private static float dropProgression( Char target, int tries ){
return tries * (float)Math.pow(1.2f, getBonus(target, Wealth.class) -1 ); return tries * (float)Math.pow(1.2f, getBonus(target, Wealth.class) -1 );
} }