diff --git a/src/game/lib/db_connect_manager.js b/src/game/lib/db_connect_manager.js index bb909b1..58b95b9 100644 --- a/src/game/lib/db_connect_manager.js +++ b/src/game/lib/db_connect_manager.js @@ -342,8 +342,6 @@ class DBConnectManager { xhr.onreadystatechange = function() { if(xhr.readyState == 4 && xhr.status == 200) { let replyJSON = JSON.parse(xhr.responseText); - console.log(replyJSON); - console.log(replyJSON["HowToPlay"]); if(replyJSON != null && replyJSON["HowToPlay"] != null) onSucceededListener(replyJSON); diff --git a/src/game/menu/menu_app.js b/src/game/menu/menu_app.js index 9b3a1ac..226d591 100644 --- a/src/game/menu/menu_app.js +++ b/src/game/menu/menu_app.js @@ -66,7 +66,7 @@ class MenuApp { () => { sessionStorageManager.playingAppID = app.AppID; sessionStorageManager.playingAppName = app.AppName; - sessionStorageManager.playingAppKoreanName = app.AppKoreanName; + sessionStorageManager.playingAppKoreanName = app.KoreanName; location.href = '../../web/client/start.html'; } ); @@ -109,6 +109,7 @@ class MenuApp { () => { sessionStorageManager.playingAppID = app.AppID; sessionStorageManager.playingAppName = app.AppName; + sessionStorageManager.playingAppKoreanName = app.KoreanName; location.href = '../../web/client/start.html'; } ); diff --git a/src/game/mouse/space_invaders/game.js b/src/game/mouse/space_invaders/game.js index 4148015..1c06a5e 100644 --- a/src/game/mouse/space_invaders/game.js +++ b/src/game/mouse/space_invaders/game.js @@ -57,8 +57,7 @@ class Game { screenBottom.makeBottomLine(); let highScore = NumberUtil.numberWithCommas(scoreManager.getHighScore()); screenBottom.printBottomLeftText("최고 기록 : " + highScore); - let playingAppName = appInfoManager.getAppNameKorean(sessionStorageManager.playingAppName); - screenBottom.printBottomCenterText(playingAppName); + screenBottom.printBottomCenterText(sessionStorageManager.playingAppKoreanName); screenBottom.printBottomRightText(sessionStorageManager.playerName); diff --git a/src/game/result/result.js b/src/game/result/result.js index 8ac3e8b..0658a74 100644 --- a/src/game/result/result.js +++ b/src/game/result/result.js @@ -33,8 +33,7 @@ class Result { let screenBottom = new ScreenBottom(); screenBottom.makeBottomLine(); screenBottom.printBottomLeftText("게임 진행 정보"); - let playingAppName = appInfoManager.getAppNameKorean(sessionStorageManager.playingAppName); - screenBottom.printBottomCenterText(playingAppName); + screenBottom.printBottomCenterText(sessionStorageManager.playingAppKoreanName); screenBottom.printBottomRightText(sessionStorageManager.playerName); }