This commit is contained in:
Akka 2022-05-09 17:01:08 +08:00
parent d00465125d
commit bf8f4fba52
2 changed files with 5 additions and 5 deletions

View File

@ -28,11 +28,11 @@ public class ScriptMonsterSpawnService {
onMonsterCreatedListener.add(consumer);
}
public void addMonsterDeadListener(Consumer<EntityMonster> consumer){
onMonsterCreatedListener.add(consumer);
onMonsterDeadListener.add(consumer);
}
public void onMonsterDead(EntityMonster entityMonster){
onMonsterCreatedListener.stream().forEach(l -> l.accept(entityMonster));
onMonsterDeadListener.forEach(l -> l.accept(entityMonster));
}
public void spawnMonster(int groupId, SceneMonster monster) {
if(monster == null){

View File

@ -66,9 +66,9 @@ public class ScriptMonsterTideService {
if(this.monsterTideCount.get() > 0){
// add more
this.sceneScriptManager.getScriptMonsterSpawnService().spawnMonster(this.currentGroup.id, getNextMonster());
}else if(this.monsterAlive.get() == 0){
}
// spawn the last turn of monsters
// fix the 5-2
this.sceneScriptManager.callEvent(EventType.EVENT_MONSTER_TIDE_DIE, new ScriptArgs(this.monsterKillCount.get()));
}
}
}