Fix: stop watch for 1to50

This commit is contained in:
2019-05-09 20:49:12 +09:00
parent 9867cb9336
commit 8738741842
4 changed files with 108 additions and 21 deletions
+2 -2
View File
@@ -9,14 +9,14 @@ RecordUtil.getRecordValueWithUnit = function(record, appID) {
}
RecordUtil.getRecordValueText = function(record, appID) {
if(appID == 104)
if(appID == 104 || appID == 105)
return record.toFixed(2);
else
return NumberUtil.numberWithCommas(Math.floor(record));
}
RecordUtil.getRecordUnit = function(appID) {
if(appID == 104) // dodge
if(appID == 104 || appID == 105) // dodge
return " 초";
else if(appID == 52 || appID == 53) // word flyingsaucer
return " 점";