v1.4.0: fixed rare consistency errors in potion of might description

This commit is contained in:
Evan Debenham
2022-09-26 17:26:17 -04:00
parent f80f547da4
commit ddbbff41e5
@@ -97,7 +97,7 @@ public class ElixirOfMight extends Elixir {
} }
public int boost(){ public int boost(){
return Math.round(left*boost(target.HT)/5f); return Math.round(left*boost(15 + 5*((Hero)target).lvl)/5f);
} }
public static int boost(int HT){ public static int boost(int HT){