Minor fixes in Step Builder
This commit is contained in:
@ -71,9 +71,9 @@ public class Character {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("This is a ");
|
||||
sb.append(fighterClass != null ? fighterClass : wizardClass);
|
||||
sb.append(" named a ");
|
||||
sb.append(" named ");
|
||||
sb.append(name);
|
||||
sb.append(" armed ");
|
||||
sb.append(" armed with a ");
|
||||
sb.append(weapon != null ? weapon : spell != null ? spell : "with nothing");
|
||||
sb.append(abilities != null ? (" and wielding " + abilities + " abilities") : "");
|
||||
sb.append(".");
|
||||
|
Reference in New Issue
Block a user