Skip to content

Commit

Permalink
Fix issue #31: Missing space in in-between game text.
Browse files Browse the repository at this point in the history
  • Loading branch information
heckman committed Dec 13, 2018
1 parent f0dce94 commit 85c7753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private String endGame() {
int age = plant.getAge();
if ( age < oldestPlant )
return "Your oldest plant was "
+ Plant.ageString(oldestPlant)
+ Plant.ageString(oldestPlant) + ". "
+ askNew();
// age >= oldestPlant
oldestPlant = age;
Expand Down

0 comments on commit 85c7753

Please sign in to comment.