After your # Add new baddies_type_1 at the top of the screen, if needed.
code, it looks like you actually add the baddie with this line:
baddies_type_1.append(newbaddie_type_1)
You don’t appear to be doing that with your goodies code. Try adding:
goddies_type_1.append(newgoddie_type_1)
after your # Add new goddies_type_1 at the top of the screen, if needed.
if statements.
Also, you spelled goodies
as goddies
throughout your code.
1
solved Simple pygame program to fix [closed]