Skip to content

Commit

Permalink
BizHawkClient: Add suggestion when no handler is found (#3375)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zunawe authored May 27, 2024
1 parent f249c36 commit 70d97a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion worlds/_bizhawk/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 70d97a0

Please sign in to comment.