fix: CreateManyNPC에서 npcCount가 0이면 fillCnt가 무시

This commit is contained in:
2021-10-14 00:37:08 +09:00
parent 418007e572
commit 08d678bdb8
+1 -1
View File
@@ -46,7 +46,7 @@ class CreateManyNPC extends \sammo\Event\Action{
public function run(array $env){
if($this->npcCount <= 0){
if($this->npcCount <= 0 && $this->fillCnt <= 0){
return [__CLASS__, []];
}