Showing
1 changed file
with
3 additions
and
3 deletions
| ... | @@ -61,8 +61,8 @@ const getCharacterInfo = async function(nickname, characterCode) { | ... | @@ -61,8 +61,8 @@ const getCharacterInfo = async function(nickname, characterCode) { |
| 61 | const dom = new JSDOM(resp.data); | 61 | const dom = new JSDOM(resp.data); |
| 62 | const $ = (require('jquery'))(dom.window); | 62 | const $ = (require('jquery'))(dom.window); |
| 63 | 63 | ||
| 64 | - const jobModel = require('../model/job'); | 64 | + const jobModel = require('./job'); |
| 65 | - const statModel = require('../model/stat'); | 65 | + const statModel = require('./stat'); |
| 66 | 66 | ||
| 67 | character.job = $(".tab01_con_wrap .table_style01:eq(0) tbody tr:eq(0) td:eq(1) span").text(); | 67 | character.job = $(".tab01_con_wrap .table_style01:eq(0) tbody tr:eq(0) td:eq(1) span").text(); |
| 68 | character.level = parseInt($(".char_info dl:eq(0) dd").text().substring(3)); | 68 | character.level = parseInt($(".char_info dl:eq(0) dd").text().substring(3)); |
| ... | @@ -172,7 +172,7 @@ const analyzeEquipment = async function(nickname, characterCode, job) { | ... | @@ -172,7 +172,7 @@ const analyzeEquipment = async function(nickname, characterCode, job) { |
| 172 | } | 172 | } |
| 173 | 173 | ||
| 174 | // 장비 분석 | 174 | // 장비 분석 |
| 175 | - const jobModel = require('../model/job'); | 175 | + const jobModel = require('./job'); |
| 176 | 176 | ||
| 177 | let damagePercent = 0; | 177 | let damagePercent = 0; |
| 178 | let majorPercent = 0; | 178 | let majorPercent = 0; | ... | ... |
-
Please register or login to post a comment