Changed 'games.started' (games does not have the property started) to 'game.started' in bot.py
Changed 'else if' to 'elif' in bot.py (can't use else if in Python 3)
Changed 'append' to 'add' in joined_before at game_manager.py. joined_before was changed to a set in an earlier commit, and a set does not have the append method.
Since I'm not really familiar with the patch branch, I guess I'm letting @Karho review this one. Not sure how/if we are going to continue with the patch branch, perhaps you can ping me on Telegram @Karho ?
Changed 'games.started' (games does not have the property started) to 'game.started' in bot.py Changed 'else if' to 'elif' in bot.py (can't use else if in Python 3) Changed 'append' to 'add' in joined_before at game_manager.py. joined_before was changed to a set in an earlier commit, and a set does not have the append method.