sabotagelimit을 strategic_cmd_limit로 변경

This commit is contained in:
2018-11-18 03:57:22 +09:00
parent 5de9859a1e
commit 979d7e3662
13 changed files with 104 additions and 143 deletions
+2 -2
View File
@@ -1272,7 +1272,7 @@ function process_16(&$general) {
$admin = $gameStor->getValues(['startyear', 'year', 'month']);
$query = "select nation,war,sabotagelimit,tech from nation where nation='{$general['nation']}'";
$query = "select nation,war,strategic_cmd_limit,tech from nation where nation='{$general['nation']}'";
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
$nation = MYDB_fetch_array($result);
@@ -1287,7 +1287,7 @@ function process_16(&$general) {
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
$destcity = MYDB_fetch_array($result);
$query = "select nation,sabotagelimit,tech from nation where nation='{$destcity['nation']}'";
$query = "select nation,strategic_cmd_limit,tech from nation where nation='{$destcity['nation']}'";
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
$dnation = MYDB_fetch_array($result);