Skip to content

Commit

Permalink
Don't use method name shorteners.
Browse files Browse the repository at this point in the history
  • Loading branch information
asofold committed Nov 15, 2015
1 parent af5fbd9 commit d62951a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -137,7 +137,7 @@ public String getParameter(final ParameterName parameterName) {
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:
Expand Down

0 comments on commit d62951a

Please sign in to comment.