fix: 忽略 CastSuperSkill 的回合记录

This commit is contained in:
milimoe 2024-11-18 21:16:34 +08:00
parent 62d3c38f32
commit 982db0e7b2
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E

View File

@ -116,7 +116,7 @@ namespace Milimoe.FunGame.Core.Entity
{ {
hasDamage = "完美闪避"; hasDamage = "完美闪避";
} }
if ((ActionType == CharacterActionType.PreCastSkill || ActionType == CharacterActionType.PreCastSkill || ActionType == CharacterActionType.CastSkill) && hasDamage == "" && target != Actor) if ((ActionType == CharacterActionType.PreCastSkill || ActionType == CharacterActionType.CastSkill || ActionType == CharacterActionType.CastSuperSkill) && hasDamage == "" && target != Actor)
{ {
hasDamage = "免疫"; hasDamage = "免疫";
} }