mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-24 13:47:46 +00:00
Fixed use to isUsable in utility function.
This commit is contained in:
parent
0e4b9f4263
commit
4bebeb387a
1 changed files with 2 additions and 2 deletions
|
@ -364,12 +364,12 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
|
||||
public bool IsUsable()
|
||||
{
|
||||
return use != 0;
|
||||
return isUseable != 0;
|
||||
}
|
||||
|
||||
public bool IsUseFree()
|
||||
{
|
||||
return use == -1;
|
||||
return isUseable == -1;
|
||||
}
|
||||
|
||||
public bool IsLostAfterUsed()
|
||||
|
|
Loading…
Add table
Reference in a new issue