From 263b7909c1ca87016f83fc58b60cc2b829b24a79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Tue, 14 May 2019 14:33:48 +0900 Subject: [PATCH] Fix: 1to50 javascript syntax error --- src/game/mouse/one_to_fifty/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/mouse/one_to_fifty/game.js b/src/game/mouse/one_to_fifty/game.js index 8ec6be4..31a8de2 100644 --- a/src/game/mouse/one_to_fifty/game.js +++ b/src/game/mouse/one_to_fifty/game.js @@ -96,7 +96,7 @@ var Game = { this.god = new God(God.POSITION_X, God.POSITION_Y, this); }, - makeChocoballArray(firstNumber, lastNumber) { + makeChocoballArray: function(firstNumber, lastNumber) { var numberArray = new Array(); for(var i = firstNumber; i < lastNumber + 1; i++) { numberArray.push(i);