fix: 아이템 파기 시 판매가 정정

This commit is contained in:
2022-05-10 23:59:58 +09:00
parent 6bc7c67589
commit b463720512
+1 -1
View File
@@ -240,7 +240,7 @@ $(function ($) {
console.log(item); console.log(item);
const josaUl = JosaUtil.pick(item.rawName, '을'); const josaUl = JosaUtil.pick(item.rawName, '을');
if (!confirm(`${item.name}${josaUl} 버리시겠습니까? (판매시 가치: ${item.cost})`)) { if (!confirm(`${item.name}${josaUl} 버리시겠습니까? (판매시 가치: ${item.cost / 2})`)) {
return; return;
} }