1
Fork 0
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:
Filip Maj 2016-02-21 20:48:54 -05:00
parent 0e4b9f4263
commit 4bebeb387a

View file

@ -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()