mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
parent
c8fd37c9f0
commit
c19c9482b2
1
NEWS
1
NEWS
@ -97,6 +97,7 @@ For a more comprehensive changelog for the latest experimental SVN code, see:
|
||||
LURE:
|
||||
- Fixed bug where Goewin could get stuck in the Weregate
|
||||
- Fixed issue with Ratpouch repeatedly moving between two rooms
|
||||
- Fix for Goewin losing her schedule after Were-cave
|
||||
|
||||
Parallaction:
|
||||
- Made part one of The Big Red Adventure completable.
|
||||
|
@ -625,12 +625,16 @@ Hotspot *Resources::activateHotspot(uint16 hotspotId) {
|
||||
CharacterScheduleEntry *entry = resources.charSchedules().getEntry(res->npcScheduleId);
|
||||
res->npcSchedule.addFront(DISPATCH_ACTION, entry, res->roomNumber);
|
||||
}
|
||||
if ((hotspotId == GOEWIN_ID) && (hotspot->roomNumber() == 39))
|
||||
if ((hotspotId == GOEWIN_ID) && (hotspot->roomNumber() == 39)) {
|
||||
// WORKAROUND: When you re-join Goewin in the caves, clear her schedule. This may prevent a
|
||||
// situation where you could close the left door, and she'd be permanently stuck trying to go
|
||||
// the next room on the left, since her old schedule still had her following your old path
|
||||
hotspot->currentActions().clear();
|
||||
|
||||
// Since she's no longer a follower, clear her start room field
|
||||
hotspot->setStartRoomNumber(0);
|
||||
}
|
||||
|
||||
// TODO: Figure out why there's a room set in the animation decode for a range of characters,
|
||||
// particularly since it doesn't seem to match what happens in-game
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user