Skip to content

Commit

Permalink
TITANIC: Fix Parrot responses to various chicken condiments
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Jul 26, 2017
1 parent 411cc2c commit d4623c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions engines/titanic/npcs/parrot.cpp
Expand Up @@ -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;
}

Expand Down

0 comments on commit d4623c1

Please sign in to comment.