list 일부 수정. tfoot 안에 tr td없는거 수정
This commit is contained in:
@@ -186,7 +186,7 @@ class CityConst{
|
||||
}
|
||||
|
||||
foreach(static::$initCity as $rawCity){
|
||||
list(
|
||||
[
|
||||
$id,
|
||||
$name,
|
||||
$level,
|
||||
@@ -198,7 +198,7 @@ class CityConst{
|
||||
$wall,
|
||||
$region,
|
||||
$path
|
||||
) = $rawCity;
|
||||
] = $rawCity;
|
||||
|
||||
$level = static::$levelMap[$level];
|
||||
$population *= 100;
|
||||
|
||||
@@ -300,7 +300,7 @@ class Diplomacy{
|
||||
$chk = $this->checkValidNation();
|
||||
$chk = $this->checkNonAggressionTreaty($chk);
|
||||
|
||||
list($result, $reason) = $chk;
|
||||
[$result, $reason] = $chk;
|
||||
if($result !== DiplomaticMessage::ACCEPTED){
|
||||
return $chk;
|
||||
}
|
||||
@@ -322,7 +322,7 @@ class Diplomacy{
|
||||
$chk = $this->checkValidNation();
|
||||
$chk = $this->checkInWar($chk);
|
||||
|
||||
list($result, $reason) = $chk;
|
||||
[$result, $reason] = $chk;
|
||||
if($result !== DiplomaticMessage::ACCEPTED){
|
||||
return $chk;
|
||||
}
|
||||
|
||||
@@ -37,12 +37,12 @@ class Personnel{
|
||||
$this->nation = $nation;
|
||||
$this->valid = true;
|
||||
|
||||
list(
|
||||
[
|
||||
$this->startYear,
|
||||
$this->year,
|
||||
$this->month,
|
||||
$this->killturn
|
||||
) = $gameStor->getValuesAsArray(['startyear', 'year', 'month', 'killturn']);
|
||||
] = $gameStor->getValuesAsArray(['startyear', 'year', 'month', 'killturn']);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -154,7 +154,7 @@ class ResetHelper{
|
||||
$year = $startyear;
|
||||
} else {
|
||||
// 현재 시간과 동기화
|
||||
list($starttime, $yearPulled, $month) = cutDay($turntime, $turnterm);
|
||||
[$starttime, $yearPulled, $month] = cutDay($turntime, $turnterm);
|
||||
if($yearPulled){
|
||||
$year = $startyear-1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user