오타 수정
This commit is contained in:
@@ -187,7 +187,8 @@ function setLeadershipBonus(&$general, $nationLevel){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function CriticalScoreEx(string $type):float {
|
function CriticalScoreEx(string $type):float {
|
||||||
if($type == 'success'){
|
if ($type == 'success') {
|
||||||
return Util::randRange(2.2, 3.0);
|
return Util::randRange(2.2, 3.0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+4
-1
@@ -207,6 +207,9 @@ CREATE TABLE `nation_turn` (
|
|||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
UNIQUE INDEX `nation` (`nation_id`, `level`, `turn_idx`),
|
UNIQUE INDEX `nation` (`nation_id`, `level`, `turn_idx`),
|
||||||
INDEX `action` (`action`, `turn_idx`, `nation_id`, `level`)
|
INDEX `action` (`action`, `turn_idx`, `nation_id`, `level`)
|
||||||
|
)
|
||||||
|
ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||||
|
|
||||||
##회의실
|
##회의실
|
||||||
CREATE TABLE `board` (
|
CREATE TABLE `board` (
|
||||||
`no` INT(11) NOT NULL AUTO_INCREMENT,
|
`no` INT(11) NOT NULL AUTO_INCREMENT,
|
||||||
@@ -638,4 +641,4 @@ CREATE TABLE IF NOT EXISTS `storage` (
|
|||||||
UNIQUE INDEX `key` (`namespace`, `key`)
|
UNIQUE INDEX `key` (`namespace`, `key`)
|
||||||
)
|
)
|
||||||
COLLATE='utf8mb4_general_ci'
|
COLLATE='utf8mb4_general_ci'
|
||||||
ENGINE=MyISAM
|
ENGINE=MyISAM;
|
||||||
|
|||||||
Reference in New Issue
Block a user