From 469dc2fedadb1b1f03ab08022890386b9f8f76a8 Mon Sep 17 00:00:00 2001 From: Yuntao Hu <695250295@qq.com> Date: Fri, 16 Jan 2026 11:43:16 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90bug=E3=80=91=E9=AB=98=E8=B4=A6PVP?= =?UTF-8?q?=E4=BF=9D=E6=8A=A4=E8=AE=A1=E6=95=B0=E9=80=BB=E8=BE=91=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Code/Scripts/GameWrapper/Premium/PremiumPVPHandle.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProjectNLD/Assets/Code/Scripts/GameWrapper/Premium/PremiumPVPHandle.cs b/ProjectNLD/Assets/Code/Scripts/GameWrapper/Premium/PremiumPVPHandle.cs index fc1657fa56e..a7acb4d075f 100644 --- a/ProjectNLD/Assets/Code/Scripts/GameWrapper/Premium/PremiumPVPHandle.cs +++ b/ProjectNLD/Assets/Code/Scripts/GameWrapper/Premium/PremiumPVPHandle.cs @@ -8,13 +8,13 @@ public class PremiumPVPHandle : PremiumHandle { if (eventData.IsActivated) { - if (eventData.PvpProtectionCount > 0) + if (eventData.PvpProtectionCount == 0) { gameObject.transform.localScale = Vector3.one; } else { - //pvp保护次数耗尽 + //发生了PVP保护,隐藏图标 gameObject.transform.localScale = Vector3.zero; } }