년도 계산 공식 재 수정. 시나리오 시작시 남은 개월 수를 계산. 반동탁연합 시나리오 외교 추가

This commit is contained in:
2018-04-29 01:47:48 +09:00
parent 1e54220230
commit 13fccb998e
3 changed files with 82 additions and 2 deletions
+1 -1
View File
@@ -1787,7 +1787,7 @@ function turnDate($curtime) {
$date += $num;
$year = intdiv($date, 12);
$month = 1 + $year % 12;
$month = 1 + $date % 12;
// 바뀐 경우만 업데이트
if($admin['month'] != $month || $admin['year'] != $year) {