mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-12-05 00:06:02 +00:00
修复无法装备的问题
This commit is contained in:
parent
1a6ed9c216
commit
a2efcd8328
@ -57,11 +57,13 @@ namespace Milimoe.FunGame.Core.Entity
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 是否允许装备
|
/// 是否允许装备
|
||||||
|
/// [ 注意:这个不是用来判断是不是装备类型的,判断装备类型时,请判断他们的 <see cref="ItemType"/> ]
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool Equipable { get; set; } = true;
|
public bool Equipable { get; set; } = true;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 是否允许取消装备
|
/// 是否允许取消装备
|
||||||
|
/// [ 注意:这个不是用来判断是不是装备类型的,判断装备类型时,请判断他们的 <see cref="ItemType"/> ]
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool Unequipable { get; set; } = true;
|
public bool Unequipable { get; set; } = true;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user