From fca615e299c6a6ec0fd0b589f2b302a2bf54c72b Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期五, 22 八月 2025 19:44:33 +0800
Subject: [PATCH] 153 【武将】招募系统 - 积分招募
---
Main/System/ItemTip/OwnItemCell.cs | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/Main/System/ItemTip/OwnItemCell.cs b/Main/System/ItemTip/OwnItemCell.cs
index 3d1a62f..cf84db2 100644
--- a/Main/System/ItemTip/OwnItemCell.cs
+++ b/Main/System/ItemTip/OwnItemCell.cs
@@ -12,7 +12,9 @@
void Start()
{
- itemIcon.SetOrgSprite(ItemConfig.Get(itemID).IconKey);
+ if (itemID != 0)
+ itemIcon.SetOrgSprite(ItemConfig.Get(itemID).IconKey);
+
wayBtn.AddListener(()=>
{
ItemTipUtility.Show(itemID, true);
--
Gitblit v1.8.0