Browse Source

Update screens.js

Fix the wrong score/cook condition displayed for the core on the score screen.
pull/3/head
Zott820 10 years ago
parent
commit
23a9b78633
  1. 2
      js/screens.js

2
js/screens.js

@ -552,7 +552,7 @@ function ScoreScreen( stage, gameState ){ @@ -552,7 +552,7 @@ function ScoreScreen( stage, gameState ){
outerConditionText.x = 310;
outerConditionText.y = 320;
var coreConditionText = new createjs.Text( coreScoreChart[ turkeyState.skin.cond[2] ], "20px Arial", "black" );
var coreConditionText = new createjs.Text( coreScoreChart[ turkeyState.core.cond[2] ], "20px Arial", "black" );
coreConditionText.x = 310;
coreConditionText.y = 340;

Loading…
Cancel
Save