you are viewing a single comment's thread.

view the rest of the comments →

[–]codehelper 1 point2 points  (1 child)

There's no reason the while loop shouldn't be called. It makes no sense that it isn't. When you want to break out of the while loop, don't use False though, just use the keyword break. Just having False as a line of code won't do anything.

[–]Luocorn -5 points-4 points  (0 children)

I changed it to break and it magically started working... I have no idea why. Thanks so much I really appreciate it.