Ubuntu

버그: 가장 많이 플레이한 챔피언 찾는 방식 변경 및 경기 당 데스 퀴즈 표현 변경

Showing 1 changed file with 4 additions and 13 deletions
...@@ -4,7 +4,7 @@ const app = express(); ...@@ -4,7 +4,7 @@ const app = express();
4 4
5 const axios = require('axios'); 5 const axios = require('axios');
6 const cheerio = require('cheerio'); 6 const cheerio = require('cheerio');
7 -const url = 'http://lol.inven.co.kr/dataninfo/proteam/progamer.php?code=135';// ***url of Other player (if you want)*** 7 +const url = 'http://lol.inven.co.kr/dataninfo/proteam/progamer.php?code=116';// ***url of Other player (if you want)***
8 8
9 const request = require('request'); 9 const request = require('request');
10 const TARGET_URL = 'https://api.line.me/v2/bot/message/reply'; 10 const TARGET_URL = 'https://api.line.me/v2/bot/message/reply';
...@@ -289,8 +289,8 @@ function generateQuiz() { ...@@ -289,8 +289,8 @@ function generateQuiz() {
289 289
290 //#region LCK 경기당 데스 퀴즈 ox 290 //#region LCK 경기당 데스 퀴즈 ox
291 var lckDM = fakerData.lCK.deathPerMatch * 1; 291 var lckDM = fakerData.lCK.deathPerMatch * 1;
292 - quizO = `${fakerData.name}의 LCK 경기 당 데스는 ${parseInt(lckDM) + 1} 데스 이하이다.`; 292 + quizO = `${fakerData.name}의 LCK 경기 당 데스는 ${parseInt(lckDM) + 1}보다 작다.`;
293 - quizX = `${fakerData.name}의 LCK 경기 당 데스는 ${parseInt(lckDM)} 데스 이하이다.`; 293 + quizX = `${fakerData.name}의 LCK 경기 당 데스는 ${parseInt(lckDM)}보다 작다.`;
294 info = `${fakerData.name}의 LCK 경기 당 데스 : ${lckDM}`; 294 info = `${fakerData.name}의 LCK 경기 당 데스 : ${lckDM}`;
295 generateOX(quizO, quizX, info); 295 generateOX(quizO, quizX, info);
296 //#endregion 296 //#endregion
...@@ -366,16 +366,7 @@ function generateQuiz() { ...@@ -366,16 +366,7 @@ function generateQuiz() {
366 //#region 모스트 픽 챔피언 366 //#region 모스트 픽 챔피언
367 var firstPickChamp = champions[champList[0]]; 367 var firstPickChamp = champions[champList[0]];
368 var secondPickChamp = champions[champList[1]]; 368 var secondPickChamp = champions[champList[1]];
369 - for (i = 0; i < champList.length; i++) { 369 +
370 - if (champions[champList[i]] > secondPickChamp.totalGamePlay) {
371 - secondPickChamp = champions[champList[i]];
372 - if (secondPickChamp.totalGamePlay > firstPickChamp.totalGamePlay) {
373 - var temp = secondPickChamp;
374 - secondPickChamp = firstPickChamp;
375 - firstPickChamp = temp;
376 - }
377 - }
378 - }
379 quizO = `${fakerData.name}가 대회에서 가장 많이 플레이한 챔피언은 '${firstPickChamp.name}'이다.`; 370 quizO = `${fakerData.name}가 대회에서 가장 많이 플레이한 챔피언은 '${firstPickChamp.name}'이다.`;
380 quizX = `${fakerData.name}가 대회에서 가장 많이 플레이한 챔피언은 '${secondPickChamp.name}'이다.`; 371 quizX = `${fakerData.name}가 대회에서 가장 많이 플레이한 챔피언은 '${secondPickChamp.name}'이다.`;
381 info = `1위. '${firstPickChamp.name}' : ${firstPickChamp.totalGamePlay}게임\n2위. '${secondPickChamp.name}' : ${secondPickChamp.totalGamePlay}게임`; 372 info = `1위. '${firstPickChamp.name}' : ${firstPickChamp.totalGamePlay}게임\n2위. '${secondPickChamp.name}' : ${secondPickChamp.totalGamePlay}게임`;
......