unify target calculation 2

This commit is contained in:
AdrianLxM 2018-03-08 15:02:11 +01:00
parent 768f61bc07
commit b880a9bb10

View file

@ -481,7 +481,7 @@ public class ActionStringHandler {
ret += "DEFAULT RANGE: ";
ret += profile.getTargetLow() + " - " + profile.getTargetHigh();
ret += " target: " + (profile.getTargetLow() + profile.getTargetHigh()) / 2;
ret += " target: " + profile.getTarget();
return ret;
}