diff options
-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; } |