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:
Cal Corum 2025-11-17 22:37:51 -06:00
parent 7bb191dbf4
commit f95afd8d5d
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
1.7.6
1.7.7

View File

@ -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)
elif hit_result == 'SPD':
this_play = singles(session, interaction, this_play, '*')
this_play = await singles(session, interaction, this_play, '*')
elif hit_result == 'F1':
this_play.outs = 1