and forgot one instance of version

This commit is contained in:
Fabian Dill 2020-04-20 19:50:13 +02:00
parent 1a53b0e69b
commit 3165c440e3
1 changed files with 1 additions and 1 deletions

View File

@ -762,7 +762,7 @@ async def server_auth(ctx: Context, password_requested):
ctx.awaiting_rom = False
ctx.auth = ctx.rom.copy()
await send_msgs(ctx.socket, [['Connect', {
'password': ctx.password, 'rom': ctx.auth, 'version': [1, 3, 0], 'tags': get_tags(ctx)
'password': ctx.password, 'rom': ctx.auth, 'version': Utils._version_tuple, 'tags': get_tags(ctx)
}]])
async def console_input(ctx : Context):