mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
Fixes client crash if the emulator is paused with ringlink enabled. Still won't be able to send out ringlink when this occurs
This commit is contained in:
@@ -335,7 +335,7 @@ class GrinchClient(BizHawkClient):
|
||||
|
||||
async def ring_link_output(self, ctx: "BizHawkClientContext"):
|
||||
from CommonClient import logger
|
||||
while not ctx.exit_event or ctx.slot:
|
||||
while not ctx.exit_event and ctx.slot:
|
||||
|
||||
try:
|
||||
current_egg_count = int.from_bytes(
|
||||
|
Reference in New Issue
Block a user