diff options
-rw-r--r-- | engines/lure/hotspots.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/hotspots.cpp b/engines/lure/hotspots.cpp index 0bf7020d8d..56548a024a 100644 --- a/engines/lure/hotspots.cpp +++ b/engines/lure/hotspots.cpp @@ -804,8 +804,8 @@ void Hotspot::showMessage(uint16 messageId, uint16 destCharacterId) { Dialog::show(idVal, itemName, this->getName()); } else if (idVal != 0) { - // Handle message as a talking dialog (the character talking to themselves) - converse(destCharacterId, idVal); + // Handle message as a talking dialog + converse(destCharacterId, idVal, true, false); } } |