LttPClient: remove accidental logger remnant

This commit is contained in:
Fabian Dill 2021-11-03 23:18:59 +01:00
parent 6ea8d07c8f
commit c336cdc5df
1 changed files with 0 additions and 1 deletions

View File

@ -869,7 +869,6 @@ async def game_watcher(ctx: Context):
gamemode = await snes_read(ctx, WRAM_START + 0x10, 1) gamemode = await snes_read(ctx, WRAM_START + 0x10, 1)
if "DeathLink" in ctx.tags and gamemode and ctx.last_death_link + 1 < time.time(): if "DeathLink" in ctx.tags and gamemode and ctx.last_death_link + 1 < time.time():
snes_logger.info((ctx.last_death_link + 1 < time.time(), ctx.last_death_link, time.time()))
if gamemode[0] in DEATH_MODES: if gamemode[0] in DEATH_MODES:
if not ctx.death_state: # new death if not ctx.death_state: # new death
await ctx.send_death() await ctx.send_death()