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

View File

@@ -177,7 +177,8 @@ async def _game_watcher(ctx: BizHawkClientContext):
if ctx.client_handler is None:
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
continue
else: