아이템 구매 버그 수정, 아이템 호칭문제 수정

This commit is contained in:
2020-03-08 12:03:23 +09:00
parent 5e1f7ea571
commit 0d39add09c
35 changed files with 100 additions and 39 deletions
+2 -2
View File
@@ -85,7 +85,7 @@ function processGoldIncome() {
." // 지급률 : ".tab2((string)round($ratio*100,2),5," ")
." % // 결과금 : ".tab2((string)$nation['gold'],6," ");
$incomeLog = "<C>●</>이번 수입은 금 <C>$income</>입니다.";
$incomeLog = "이번 수입은 금 <C>$income</>입니다.";
$db->update('nation', [
'gold'=>$nation['gold']
@@ -364,7 +364,7 @@ function processRiceIncome() {
." // 지급률 : ".tab2((string)round($ratio*100,2),5," ")
." % // 결과곡 : ".tab2((string)$nation['rice'],6," ");
$incomeLog = "<C>●</>이번 수입은 쌀 <C>$income</>입니다.";
$incomeLog = "이번 수입은 쌀 <C>$income</>입니다.";
$db->update('nation', [
'rice'=>$nation['rice']