bug
parent
2268fdbf5a
commit
4960916a72
|
|
@ -533,11 +533,16 @@ public class MissionEventDistributor {
|
|||
return null;
|
||||
}
|
||||
Map<GameMisionType, List<MissionStateChangeInfo>> missionTypeEnumListMap = threadMissionChangeList.get();
|
||||
if(missionTypeEnumListMap == null){
|
||||
missionTypeEnumListMap = new HashMap<>(1);
|
||||
}
|
||||
try {
|
||||
if(missionTypeEnumListMap == null){
|
||||
missionTypeEnumListMap = new HashMap<>(1);
|
||||
}
|
||||
|
||||
processor.onGameEvent(user, missionTypeEnumListMap,event,parm );
|
||||
processor.onGameEvent(user, missionTypeEnumListMap,event,parm );
|
||||
}catch (Exception e){
|
||||
e.printStackTrace();
|
||||
LOGGER.error(e.toString());
|
||||
}
|
||||
return missionTypeEnumListMap;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue