Corrected spelling mistake in hair type: BOLD -> BALD.

This commit is contained in:
Ilkka Seppala
2014-09-25 21:16:48 +03:00
parent d3fbc2e90b
commit 52f0923df9
3 changed files with 4 additions and 4 deletions

View File

@@ -55,7 +55,7 @@ public class Hero {
sb.append(hairType);
sb.append(" ");
}
sb.append(hairType != HairType.BOLD ? "hair" : "head");
sb.append(hairType != HairType.BALD ? "hair" : "head");
}
if (armor != null) {
sb.append(" wearing ");