类型10 特殊处理

back_recharge
jiahuiwen 2019-05-31 18:24:09 +08:00
parent 93239139c1
commit 2897ad08ba
1 changed files with 2 additions and 2 deletions

View File

@ -519,8 +519,8 @@ public class MapLogic {
cell = mapManager.getMapInfo().get(mapManager.getCurXY());
}
int nextEventId = 0;
// 战斗事件需要放到战斗胜利
if (baseBehavior == null || !baseBehavior.isFightBehavior()) {
// 战斗事件需要放到战斗胜利(10 类型需要特殊处理)
if (baseBehavior == null || !baseBehavior.isFightBehavior()|| behaviorType == EventType.monitorMission) {
// 检测该事件点是否已被销毁
if (cell != null) {
nextEventId = getNextEventId(user, cell, sOptionConfig);