diff options
author | Benoît LUBRANO DI SBARAGLIONE | 2014-04-09 11:27:46 +0200 |
---|---|---|
committer | Benoît LUBRANO DI SBARAGLIONE | 2014-04-09 11:27:46 +0200 |
commit | 88228feaeaf2ab881fa1f914a99c15ac3d6c4b60 (patch) | |
tree | 82a420bfd00579d0a1826f31c9b80b6aa7dec393 /src | |
parent | 2fee72805e1025a298295e6d86de18e48de4b52a (diff) | |
download | esieequest-88228feaeaf2ab881fa1f914a99c15ac3d6c4b60.tar.gz |
Correct sentence for no items in current room.
Diffstat (limited to 'src')
-rw-r--r-- | src/esieequest/model/items/Inventory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/esieequest/model/items/Inventory.java b/src/esieequest/model/items/Inventory.java index 228386e..dddff8f 100644 --- a/src/esieequest/model/items/Inventory.java +++ b/src/esieequest/model/items/Inventory.java | |||
@@ -71,7 +71,7 @@ public class Inventory { | |||
71 | * @return the list of items | 71 | * @return the list of items |
72 | */ | 72 | */ |
73 | public String listItems() { | 73 | public String listItems() { |
74 | return Utils.list(this.items.keySet(), "Items:", "No items."); | 74 | return Utils.list(this.items.keySet(), "Items:", "No items here."); |
75 | } | 75 | } |
76 | 76 | ||
77 | /** | 77 | /** |