game 테이블을 KVStorage로 일부 대체

This commit is contained in:
2018-05-13 01:26:44 +09:00
parent 9d6181ede1
commit 166eafe4ee
13 changed files with 67 additions and 98 deletions
+2 -2
View File
@@ -1193,8 +1193,8 @@ function checkEmperior() {
if($count == $allcount) {
pushNationHistory($nation, "<C>●</>{$admin['year']}{$admin['month']}월:<D><b>{$nation['name']}</b></>(이)가 전토를 통일");
$query = "update game set isUnited=2,conlimit=conlimit*100";
MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
$gameStor->isUnited = 2;
$gameStor->conlimit = $gameStor->conlimit*100;
$query = "select no from general where npc<2 and age>=45";
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");