Fix unawaited coroutine in singles() command (SPD hit result)
- Added missing await keyword on line 2981 in logic_gameplay.py - SPD hit result was calling singles() without await, causing RuntimeWarning - All groundball tests passing (24/24) - Bump version to 1.7.7 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
7bb191dbf4
commit
f95afd8d5d
@ -2978,7 +2978,7 @@ async def xchecks(session: Session, interaction: discord.Interaction, this_play:
|
|||||||
this_play = await gb_letter(session, interaction, this_play, 'C', position=this_play.check_pos, defender_is_in=playing_in)
|
this_play = await gb_letter(session, interaction, this_play, 'C', position=this_play.check_pos, defender_is_in=playing_in)
|
||||||
|
|
||||||
elif hit_result == 'SPD':
|
elif hit_result == 'SPD':
|
||||||
this_play = singles(session, interaction, this_play, '*')
|
this_play = await singles(session, interaction, this_play, '*')
|
||||||
|
|
||||||
elif hit_result == 'F1':
|
elif hit_result == 'F1':
|
||||||
this_play.outs = 1
|
this_play.outs = 1
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user