diff --git a/serverlogic/src/main/java/com/ljsd/jieling/handler/map/behavior/ThirtyNineBehavior.java b/serverlogic/src/main/java/com/ljsd/jieling/handler/map/behavior/ThirtyNineBehavior.java index 82510ed54..24eb4fbca 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/handler/map/behavior/ThirtyNineBehavior.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/handler/map/behavior/ThirtyNineBehavior.java @@ -15,7 +15,10 @@ public class ThirtyNineBehavior extends BaseBehavior { @Override public boolean process(int optionId, User user, int[][] behaviorTypeValues, MapInfoProto.EventUpdateResponse.Builder eventUpdateResponse) throws Exception { - return false; + // readyInfo: 怪物组id#任务id#需要销毁事件id => 怪物组id#optionId + String readyInfo = behaviorTypeValues[0][0] + "#" + Integer.toString(optionId); + BehaviorUtil.fightReady(user.getId(), readyInfo); + return true; } @Override