diff options
-rw-r--r-- | engines/lure/hotspots.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/lure/hotspots.cpp b/engines/lure/hotspots.cpp index ca89af2af9..d247c343ca 100644 --- a/engines/lure/hotspots.cpp +++ b/engines/lure/hotspots.cpp @@ -4022,7 +4022,8 @@ void HotspotTickHandlers::npcRoomChange(Hotspot &h) { if (h.currentActions().size() > 1) { // Pending items on stack if (h.startRoomNumber() != 0) { - if (!h.currentActions().bottom().hasSupportData() || (h.currentActions().bottom().action() != RETURN)) { + if (!h.currentActions().bottom().hasSupportData() || + (h.currentActions().bottom().supportData().action() != RETURN)) { // Signal character to return h.currentActions().clear(); h.currentActions().addFront(RETURN, h.startRoomNumber(), 0, 0); |