From cd85279ded777823cfedfbbc3cad46f9aec8d458 Mon Sep 17 00:00:00 2001 From: pepperpow Date: Sun, 31 Jan 2021 07:46:40 -0600 Subject: [PATCH] Missed number in log output --- MultiClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiClient.py b/MultiClient.py index 6d62b084..9fd2d19a 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -996,7 +996,7 @@ async def process_server_cmd(ctx: Context, cmd, args): if ctx.requires_treasure_count is None: ctx.requires_treasure_count = (await snes_read(ctx, 0x180165, size=1))[0] >= 0x80 if ctx.requires_treasure_count and ctx.treasure_count < args[0]: - logging.info('Team Triforce count is now '.format(args[0])) + logging.info('Team Triforce count is now {}'.format(args[0])) ctx.treasure_count = args[0] snes_buffered_write(ctx, WRAM_START + 0xF418, bytes(int16_as_bytes(ctx.treasure_count))) await snes_flush_writes(ctx)