diff options
author | Paul Gilbert | 2017-07-25 20:45:02 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-07-25 20:45:02 -0400 |
commit | d4623c14a133dbfbe43eacf3c3ed3f4f34d8eaa2 (patch) | |
tree | 092d597174355c95c1995e323f76f6873512ffcd | |
parent | 411cc2cb4e8cfc1630585125e38dcd63db9d7e79 (diff) | |
download | scummvm-rg350-d4623c14a133dbfbe43eacf3c3ed3f4f34d8eaa2.tar.gz scummvm-rg350-d4623c14a133dbfbe43eacf3c3ed3f4f34d8eaa2.tar.bz2 scummvm-rg350-d4623c14a133dbfbe43eacf3c3ed3f4f34d8eaa2.zip |
TITANIC: Fix Parrot responses to various chicken condiments
-rw-r--r-- | engines/titanic/npcs/parrot.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/titanic/npcs/parrot.cpp b/engines/titanic/npcs/parrot.cpp index c8f833b3ec..e5c52f9615 100644 --- a/engines/titanic/npcs/parrot.cpp +++ b/engines/titanic/npcs/parrot.cpp @@ -598,16 +598,16 @@ bool CParrot::FrameMsg(CFrameMsg *msg) { int &action = triggerMsg._action; switch (triesMsg._condiment) { case 1: - action = 280056 + (triesMsg._isHot ? 234 : 0); + action = triesMsg._isHot ? 280034 : 280056; break; case 2: - action = 280055 + (triesMsg._isHot ? 234 : 0); + action = triesMsg._isHot ? 280033 : 280055; break; case 3: - action = 280054 + (triesMsg._isHot ? 234 : 0); + action = triesMsg._isHot ? 280032 : 280054; break; default: - action = 280053 + (triesMsg._isHot ? 213 : 0); + action = triesMsg._isHot ? 280266 : 280053; break; } |