diff options
-rw-r--r-- | engines/lure/hotspots.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/hotspots.cpp b/engines/lure/hotspots.cpp index bc0e424301..91142d077d 100644 --- a/engines/lure/hotspots.cpp +++ b/engines/lure/hotspots.cpp @@ -821,7 +821,7 @@ void Hotspot::handleTalkDialog() { if (_data->talkCountdown == CONVERSE_COUNTDOWN_SIZE) { // Check if there's already an active dialog - if so, wait until it's finished - if (room.isDialogActive() && (res.getTalkingCharacter() != _hotspotId)) { + if (room.isDialogShowing() && (res.getTalkingCharacter() != _hotspotId)) { ++_data->talkCountdown; if (delayCtr() > 0) setDelayCtr(delayCtr() + 2); |