game 테이블을 모두 gameStor로 변환

This commit is contained in:
2018-05-20 03:43:02 +09:00
parent af9df325f0
commit 0516007130
28 changed files with 200 additions and 427 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ $userID = Session::getUserID();
$db = DB::db();
$gameStor = KVStorage::getStorage($db, 'game_env');
list($npcmode, $maxgeneral) = $db->queryFirstList('SELECT npcmode,maxgeneral FROM game LIMIT 1');
list($npcmode, $maxgeneral) = $gameStor->getValuesAsArray(['npcmode', 'maxgeneral']);
if(!$npcmode) {
header('location:..');