From 982db0e7b21aee7637a9fa4296e06d65b9a8ebe2 Mon Sep 17 00:00:00 2001 From: milimoe Date: Mon, 18 Nov 2024 21:16:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BF=BD=E7=95=A5=20CastSuperSkill=20?= =?UTF-8?q?=E7=9A=84=E5=9B=9E=E5=90=88=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Entity/System/RoundRecord.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Entity/System/RoundRecord.cs b/Entity/System/RoundRecord.cs index 11e96f6..9141fb3 100644 --- a/Entity/System/RoundRecord.cs +++ b/Entity/System/RoundRecord.cs @@ -116,7 +116,7 @@ namespace Milimoe.FunGame.Core.Entity { 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 = "免疫"; }