Bug #2: The Infinite Salad Bar

It seems that the salad bar in the community center has become a never-ending, infinite loop of lettuce, tomatoes, carrots, and cucumbers. Users report that no matter how many times they try to get a salad, the bar just keeps refilling itself.

				def infinite_salad_bar():
				while True:
					print("Salad Bar Refilled!")
					wait_for_user_input()
					continue
			

See Known Fixes