Skip to content

Commit

Permalink
Merge pull request #13022 from headdrop/master
Browse files Browse the repository at this point in the history
[Please Rule the North with me, Grand Duke!] fix error
  • Loading branch information
kfroll20 committed Jun 18, 2024
2 parents 5196cec + fbb669d commit 4a28192
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions Please Rule the North with me, Grand Duke!/northgrandduke.html
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ <h3>
}

// 토글처리
if(!v['tog-relation']) setAttrs({'tog-relation': 0});
if(v['tog-relation']==0 || !v['tog-relation']) setAttrs({'tog-relation': 0});
});


Expand Down Expand Up @@ -1352,10 +1352,14 @@ <h3>
var JSON_origin, JSON_knot = new Array();
try {
JSON_origin = JSON.parse(addOrigin);
} catch (e) {}
} catch {
JSON_origin = [];
}
try {
JSON_knot = JSON.parse(addKnot);
} catch (e) {}
} catch {
JSON_knot = [];
}

var relArr = JSON_origin.concat(JSON_knot);
relArr = relDATA.concat(JSON_origin, JSON_knot);
Expand Down Expand Up @@ -1399,7 +1403,11 @@ <h3>
var add_season = v['add-season'];

add_season = add_season.replace(/\n/g, '');
JSON_season = JSON.parse(add_season);
try {
JSON_season = JSON.parse(add_season);
} catch {
JSON_season = [];
}

var crisisArr = crisisDATA.concat(JSON_season);
crisisArr = _.uniq(crisisArr);
Expand Down Expand Up @@ -2121,4 +2129,4 @@ <h3>
"content_dif": "얼음용은 북부를 향해 토해내던 혹한의 숨결을 멈췄으나, 이미 토해놓은 숨결은 어쩔 수 없습니다. 우리 영지의 혹한은 다소 풀리기는 했지만 여전히 춥습니다. 모험가들이 할 일은 다 했으니 이제 혹한 주의보를 내리고 부서를 운영해야겠죠? 이제 다시 부서장의 시간입니다. \n\n온 도시가 얼어붙어 있습니다. 여러분은 혹한 주의보를 내렸고, 다들 그 지시를 따라 따뜻한 집 밖에서 불을 열심히 때고, 집 밖에서 행동하는 건 최소로 하고 있지만 그렇게 할 수 없는 사람들도 많습니다. 땔감을 구하러 나갔던 사람들이 조난당하고, 빈민가에서는 동상과 열감기가 유행하고 있습니다. 게다가 더 나쁜 건 얼음용에 대한 무시무시한 소문도 돌고 있다는 점입니다. 영지에 다시 활력을 불어넣을 수는 없을까요? "
}
]
</script>
</script>

0 comments on commit 4a28192

Please sign in to comment.