훈사를 분리

This commit is contained in:
2019-09-21 21:29:20 +09:00
parent e5fc467c4e
commit 33e075f669
2 changed files with 9 additions and 4 deletions
+3
View File
@@ -56,8 +56,11 @@ class AIAllowedAction{
case 'recruit':
$this->recruit = true;
$this->changeWarCondition = true;
break;
case 'train':
$this->train = true;
$this->atmos = true;
$this->changeWarCondition = true;
break;
case 'battle':
$this->battle = true;
+6 -4
View File
@@ -47,8 +47,9 @@ if(file_exists(__dir__.'/.htaccess')){
switch($auto_option){
case 'develop': $auto_info['내정'] = '내정'; break;
case 'warp': $auto_info['순간이동'] = '순간이동'; break;
case 'recruit': $auto_info['징훈사'] = $auto_info['징훈사']??'징훈사'; break;
case 'recruit_high': $auto_info['징훈사'] = '모훈사'; break;
case 'recruit': $auto_info['징'] = $auto_info['징']??'징'; break;
case 'recruit_high': $auto_info['징'] = '모'; break;
case 'train': $auto_info['훈사'] = '훈련/사기진작'; break;
case 'battle': $auto_info['출병'] = '출병'; break;
}
}
@@ -125,8 +126,9 @@ if($admin['autorun_user']['limit_minutes']??false){
switch($auto_option){
case 'develop': $auto_info['내정'] = '내정'; break;
case 'warp': $auto_info['순간이동'] = '순간이동'; break;
case 'recruit': $auto_info['징훈사'] = $auto_info['징훈사']??'징훈사'; break;
case 'recruit_high': $auto_info['징훈사'] = '모훈사'; break;
case 'recruit': $auto_info['징'] = $auto_info['징']??'징'; break;
case 'recruit_high': $auto_info['징'] = '모'; break;
case 'train': $auto_info['훈사'] = '훈련/사기진작'; break;
case 'battle': $auto_info['출병'] = '출병'; break;
}
}