From 23a9b78633c73829449809d12d40f4123cfb434d Mon Sep 17 00:00:00 2001 From: Zott820 Date: Tue, 7 Jan 2014 00:31:37 -0800 Subject: [PATCH] Update screens.js Fix the wrong score/cook condition displayed for the core on the score screen. --- js/screens.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/screens.js b/js/screens.js index 3ed6a14..4006c18 100755 --- a/js/screens.js +++ b/js/screens.js @@ -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;