fix: applyDB시 rankVarRead 처리 오류 (=은퇴 버그 수정)

- 은퇴는 applyDB 이후에 실행됨
- applyDB 코드 오류로 이후 key값 문제로 은퇴가 실행되지 않음
This commit is contained in:
2022-08-13 03:12:09 +09:00
parent e9b975bea7
commit 053288b227
+1 -1
View File
@@ -803,7 +803,7 @@ class General implements iAction
$db->update('rank_data', [
'value' => $rankVal
], 'general_id = %i AND type = %s', $generalID, $rankKey->value);
$this->rankVarRead[$rankKey->value] = $rankVal;
$this->rankVarRead[$rankKey] = $rankVal;
}
$result = true;
}