v0.8 업데이트 #116

Closed
Hide_D wants to merge 209 commits from custom_map into devel
Showing only changes of commit 16ac951eae - Show all commits
+1 -1
View File
@@ -952,7 +952,7 @@ function process_11(&$general, $type) {
$ownCities = [];
$ownRegions = [];
foreach($db->queryFirstColumn('SELECT city FROM city WHERE nation = %i', $me['nation']) as $ownCity){
foreach($db->queryFirstColumn('SELECT city FROM city WHERE nation = %i', $general['nation']) as $ownCity){
$ownCities[$ownCity] = 1;
$ownRegions[CityConst::byId($ownCity)->region] = 1;
}