Skip to content

Commit

Permalink
Fix summoned skills not breaking props
Browse files Browse the repository at this point in the history
  • Loading branch information
Melledy committed Dec 14, 2023
1 parent 09337fd commit 8eab7ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/emu/lunarcore/data/config/SummonUnitInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import emu.lunarcore.game.battle.skills.MazeSkillAction;
import emu.lunarcore.game.battle.skills.MazeSkillAddBuff;
import emu.lunarcore.game.battle.skills.MazeSkillHitProp;
import lombok.Getter;

/**
Expand Down Expand Up @@ -66,7 +67,7 @@ public void buildMazeSkillActions() {

actions.add(actionAddBuff);
} else if (task.getType().contains("TriggerHitProp")) {
// actions.add(new MazeSkillAddBuff(task.getID(), 20));
actions.add(new MazeSkillHitProp());
}
}
}
Expand Down

0 comments on commit 8eab7ce

Please sign in to comment.