버그 수정, 사령부 UI 복구

This commit is contained in:
2020-03-07 18:04:23 +09:00
parent 573d313cc8
commit 28c3ebb5f9
8 changed files with 242 additions and 96 deletions
+11 -1
View File
@@ -327,4 +327,14 @@ function nl2br(text){
function br2nl (text) {
return text.replace(/<\s*\/?br\s*[\/]?>/gi, '\n');
}
*/
*/
function getNpcColor(npcType){
if(npcType >= 2){
return 'cyan';
}
if(npcType == 1){
return 'skyblue';
}
return null;
}