diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/esieequest/controller/Performer.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/esieequest/controller/Performer.java b/src/esieequest/controller/Performer.java index 29b5fc8..e8aefec 100644 --- a/src/esieequest/controller/Performer.java +++ b/src/esieequest/controller/Performer.java | |||
@@ -75,14 +75,14 @@ public class Performer { | |||
75 | } | 75 | } |
76 | 76 | ||
77 | public void look() { | 77 | public void look() { |
78 | this.echo(this.game.getLocationInfo()); | 78 | this.echo(this.game.getLocationInfo()+"\n"+this.listItems()); |
79 | this.listItems(); | ||
80 | } | 79 | } |
81 | 80 | ||
82 | private void listItems() { | 81 | private String listItems() { |
83 | if (!this.game.getItemList().isEmpty()) { | 82 | if (!this.game.getItemList().isEmpty()) { |
84 | this.echo(this.game.getItemListPrefix() + this.buildListString(this.game.getItemList())); | 83 | return this.game.getItemListPrefix() + this.buildListString(this.game.getItemList()); |
85 | } | 84 | } |
85 | return ""; | ||
86 | } | 86 | } |
87 | 87 | ||
88 | public void eat() { | 88 | public void eat() { |