removed all eggs but red, blue, and rainbow

This commit is contained in:
Nick Dyer 2021-06-05 00:05:58 -04:00
parent d5b3e84c76
commit 0c8f54a5eb

View File

@ -330,10 +330,7 @@ def game():
if submenu == 'main':
# Creates and holds the egg objects in a list.
eggs = [SelectionEgg('red'), SelectionEgg('orange'), SelectionEgg('yellow'),
SelectionEgg('green'),
SelectionEgg('blue'), SelectionEgg('indigo'), SelectionEgg('violet'), SelectionEgg('white'),
SelectionEgg('rainbow')]
eggs = [SelectionEgg('red'), SelectionEgg('blue'), SelectionEgg('rainbow')]
# How many eggs per row should be displayed.
eggs_per_row = 3