Don't use method name shorteners.

This commit is contained in:
asofold 2015-11-15 03:18:46 +01:00
parent af5fbd900a
commit d62951ade7

View File

@ -137,7 +137,7 @@ public class ViolationData implements IViolationInfo, ActionData {
case CHECK:
return check.getClass().getSimpleName();
case HEALTH: {
String health = getParameter(ParameterName.HEALTH);
String health = getParameterValue(ParameterName.HEALTH);
return health == null ? (player.getHealth() + "/" + player.getMaxHealth()) : health;
}
case IP: