From 5e29703ea8eea204d663802e094bbf5fd395bdab Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 23 Dec 2007 10:52:18 +0000 Subject: Bugfix for Town Hall room: Captive Goewin's bounds were frequently and incorrectly preventing the player from talking to the Skorl svn-id: r29957 --- engines/lure/res.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/lure/res.cpp b/engines/lure/res.cpp index 42eac59f26..63c4af8ec7 100644 --- a/engines/lure/res.cpp +++ b/engines/lure/res.cpp @@ -601,9 +601,11 @@ Hotspot *Resources::addHotspot(uint16 hotspotId) { Hotspot *hotspot = new Hotspot(hData); _activeHotspots.push_back(hotspot); - if (hotspotId < FIRST_NONCHARACTER_ID) + if (hotspotId < FIRST_NONCHARACTER_ID) { // Default characters to facing upwards until they start moving hotspot->setDirection(UP); + hotspot->setCharRectY(0); + } return hotspot; } -- cgit v1.2.3