mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 14:18:37 +00:00
TSAGE: Blue Force - Fix original bug when entering the boat with the gun handy, day 1, with Harrison
This commit is contained in:
parent
4c89891382
commit
4c4e7289be
@ -4501,7 +4501,13 @@ void Scene360::signal() {
|
||||
break;
|
||||
case 3607:
|
||||
case 3609:
|
||||
_harrison.setVisage(1363);
|
||||
// Original game was only using at this place visage 1363.
|
||||
// This workaround allow Harrison to keep his gun handy
|
||||
// when entering the romm (if required)
|
||||
if (! BF_GLOBALS.getFlag(gunDrawn))
|
||||
_harrison.setVisage(1363);
|
||||
else
|
||||
_harrison.setVisage(363);
|
||||
BF_GLOBALS._player.enableControl();
|
||||
break;
|
||||
case 3608:
|
||||
|
Loading…
Reference in New Issue
Block a user