버그 수정. 커맨드. 사령턴 실행.

This commit is contained in:
2018-10-02 02:27:42 +09:00
parent e975a8106f
commit 38bbae13b9
3 changed files with 116 additions and 20 deletions
+12
View File
@@ -662,6 +662,12 @@ function pullGeneralCommand(int $generalID, int $turnCnt=1){
}
function pushNationCommand(int $nationID, int $level, int $turnCnt=1){
if($nationID == 0){
return;
}
if($level < 5){
return;
}
if($turnCnt == 0){
return;
}
@@ -685,6 +691,12 @@ function pushNationCommand(int $nationID, int $level, int $turnCnt=1){
}
function pullNationCommand(int $nationID, int $level, int $turnCnt=1){
if($nationID == 0){
return;
}
if($level < 5){
return;
}
if($turnCnt == 0){
return;
}