Skip to content

Commit

Permalink
Fixed output issue before achievement unlocking.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernardo Sulzbach committed Oct 12, 2015
1 parent f483cdf commit e4baf4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/dungeon/entity/creatures/Hero.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static void writeItemSight(List<Item> items, DungeonString builder) {
if (!items.isEmpty()) {
builder.append("\nOn the ground you see ");
builder.append(Utils.enumerateEntities(items));
builder.append(".");
builder.append(".\n");
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/dungeon/game/Engine.java
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private static void writeDrops(Creature source) {
DungeonString string = new DungeonString();
string.append(source.getName().getSingular() + " dropped ");
string.append(Utils.enumerateEntities(source.getDroppedItemsList()));
string.append(".");
string.append(".\n");
Writer.write(string);
}
}
Expand Down

0 comments on commit e4baf4d

Please sign in to comment.