BizHawkClient: Add suggestion when no handler is found (#3375)

This commit is contained in:
Bryce Wilson 2024-05-26 17:27:04 -07:00 committed by GitHub
parent f249c36f8b
commit 70d97a0eb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -177,7 +177,8 @@ async def _game_watcher(ctx: BizHawkClientContext):
if ctx.client_handler is None: if ctx.client_handler is None:
if not showed_no_handler_message: if not showed_no_handler_message:
logger.info("No handler was found for this game") logger.info("No handler was found for this game. Double-check that the apworld is installed "
"correctly and that you loaded the right ROM file.")
showed_no_handler_message = True showed_no_handler_message = True
continue continue
else: else: