From a1a5bfd09435eb24e30a9d80ab316288854b8437 Mon Sep 17 00:00:00 2001 From: milimoe Date: Sat, 7 Dec 2024 01:12:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=97=A0=E6=B3=95=E8=A3=85?= =?UTF-8?q?=E5=A4=87=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OshimaCore/Controllers/FunGameController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OshimaCore/Controllers/FunGameController.cs b/OshimaCore/Controllers/FunGameController.cs index 4d89966..f7f992d 100644 --- a/OshimaCore/Controllers/FunGameController.cs +++ b/OshimaCore/Controllers/FunGameController.cs @@ -998,7 +998,7 @@ namespace Oshima.Core.Controllers { return NetworkUtility.JsonSerialize($"这个物品无法被装备!"); } - else if (item.EquipSlotType != EquipSlotType.None || item.Character != null) + else if (item.EquipSlotType != EquipSlotType.None) { return NetworkUtility.JsonSerialize($"这个物品无法被装备!" + (item.Character != null ? $"[ {item.Character.ToStringWithLevelWithOutUser()} ] 已装备此物品。" : "")); }