git: cleanup gitignore, as a bunch of files/folders no longer exist in AP

This commit is contained in:
Fabian Dill
2022-01-29 15:39:14 +01:00
parent a97e6833a3
commit 5777808aa9
2 changed files with 6 additions and 9 deletions

View File

@@ -465,13 +465,13 @@ async def process_server_cmd(ctx: CommonContext, args: dict):
raise Exception('Player slot already in use for that team')
elif 'IncompatibleVersion' in errors:
raise Exception('Server reported your client version as incompatible')
elif 'InvalidItemsHandling' in errors:
raise Exception('The item handling flags requested by the client are not supported')
# last to check, recoverable problem
elif 'InvalidPassword' in errors:
logger.error('Invalid password')
ctx.password = None
await ctx.server_auth(True)
elif 'InvalidItemsHandling' in errors:
raise Exception('The item handling flags requested by the client are not supported')
elif errors:
raise Exception("Unknown connection errors: " + str(errors))
else: