We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d75bfa commit ed1a430Copy full SHA for ed1a430
module/private_quarters/interact.py
@@ -215,8 +215,9 @@ def _pq_goto_room_exit(self):
215
"""
216
# Rare case in the middle of dialogue, so address
217
# before initiating room exit
218
- if not self.appear(PRIVATE_QUARTERS_ROOM_CHECK, offset=(20, 20)):
219
- self._pq_handle_dialogue()
+ if (not self.appear(PRIVATE_QUARTERS_ROOM_CHECK, offset=(20, 20)) and
+ not self.appear(PRIVATE_QUARTERS_INTERACT, offset=(0, 60))):
220
+ self._pq_handle_dialogue()
221
222
self.interval_clear(PRIVATE_QUARTERS_ROOM_BACK)
223
self.ui_click(
0 commit comments