버그 수정, u장수 관련 특성 수정
- m장은 거병하지 않도록, - 태수국 건국 버그 수정 - Condition "Logic" 이 하위 Condition을 해석하지 못하는 버그 수정 - 시나리오 국가 건국시 type으로 null(랜덤)을 해석하지 못하는 버그 수정 - 시나리오 초반 NPC 등장을 12월(고정)에서 6월또는 12월로 수정
This commit is contained in:
@@ -76,7 +76,10 @@ class Nation{
|
||||
$capital = 0;
|
||||
}
|
||||
|
||||
if(strpos($this->type, '_') === FALSE){
|
||||
if($this->type === null){
|
||||
$type = Util::choiceRandom(GameConst::$availableNationType);
|
||||
}
|
||||
else if(strpos($this->type, '_') === FALSE){
|
||||
$type = 'che_'.$this->type;
|
||||
}
|
||||
else{
|
||||
|
||||
Reference in New Issue
Block a user