Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Ohhhh taking a look at your code, it looks like you have two many `else`s? And the `else` should always come at the end of a list of ifs.

So you can have:

`if...`

`elif...`

`elif...`

`else...`

In that order, but you can't have an else before an elif and you can only have one else total?? So I would move your `elif` beneath your `if` and get rid of one of the two `else`s. Does that make sense/help at all? 🤔