mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2025-04-22 20:09:35 +08:00
修复无法装备的问题
This commit is contained in:
parent
d35251f258
commit
a1a5bfd094
@ -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()} ] 已装备此物品。" : ""));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user