아이템 코드를 String으로 바꾸었으므로 연동 대상 또한 변경
This commit is contained in:
@@ -1151,19 +1151,19 @@ function checkStatistic() {
|
||||
|
||||
$specialHistsStr = join(', ', array_map(function($histPair){
|
||||
[$histKey, $cnt] = $histPair;
|
||||
return getGenSpecial($histKey).'('.$cnt.')';
|
||||
return getGeneralSpecialDomesticName($histKey).'('.$cnt.')';
|
||||
}, Util::convertDictToArray($specialHists)));
|
||||
|
||||
$specialHists2Str = join(', ', array_map(function($histPair){
|
||||
[$histKey, $cnt] = $histPair;
|
||||
return getGenSpecial($histKey).'('.$cnt.')';
|
||||
return getGeneralSpecialWarName($histKey).'('.$cnt.')';
|
||||
}, Util::convertDictToArray($specialHists2)));
|
||||
|
||||
$specialHistsAllStr = "$specialHistsStr // $specialHists2Str";
|
||||
|
||||
$crewtypeHistsStr = join(', ', array_map(function($histPair){
|
||||
[$histKey, $cnt] = $histPair;
|
||||
return getGenSpecial($histKey).'('.$cnt.')';
|
||||
return GameUnitConst::byID($hisKey)->getShortName().'('.$cnt.')';
|
||||
}, Util::convertDictToArray($crewtypeHists)));
|
||||
|
||||
$db->insert('statistic', [
|
||||
|
||||
Reference in New Issue
Block a user