Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Objects Delivering the MVP Determining If the Game is Won

Game stopped telling me how many tries are left.

Somehow I broke the part in my code where it requires seven tries before kicking you out. If someone could help me figure out what's wrong that would be awesome.

Steven Parker
Steven Parker
229,744 Points

To make it possible for someone to help, make a snapshot of your workspace and post the link to it here.

2 Answers

Steven Parker
Steven Parker
229,744 Points

Nothing in the body of the loop starting on line 17 of "Prompter.java" changes the value of "isAcceptable", so the loop continues indefinitely.

What should be there?

Steven Parker
Steven Parker
229,744 Points

The video has "isAcceptable = true;" on line 21 (line 24 in your version).

Thank you so much! Problem solved!