Skip to content

Commit

Permalink
Tweaked end game wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
PathogenDavid committed Sep 15, 2024
1 parent 28c1a5a commit 6cf5ba4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Assets/HandMadeGame/Code/GameFlow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,13 @@ private void MarkQuestCompleted(Quest quest)
private void WinConditionCheck()
{
if (Reputation >= WinReputation)
InfoPopupController.ShowPopup("You successfully redecorated everyone's nest and are widely recognized in your park as an\n<size=130%><<em>Expert Interior Birdecorator</em>></size>\n\nThanks for playing!");
InfoPopupController.ShowPopup
(
"You successfully redecorated everyone's nest!\n" +
"Now you're widely recognized in your park as an\n\n" +
"<size=130%><<em>Expert Interior Birdecorator</em>></size>\n\n" +
"Thanks for playing!"
);
}

private void OnDestroy()
Expand Down

0 comments on commit 6cf5ba4

Please sign in to comment.