working state

This commit is contained in:
EmosewaMC
2022-03-27 23:46:43 -07:00
parent 0a7fd6f79a
commit 0a453e9dca
3 changed files with 78 additions and 23 deletions

View File

@@ -27,7 +27,7 @@ void PropertySelectQueryProperty::Serialize(RakNet::BitStream& stream) const
stream.Write(IsFriend);
stream.Write(IsModeratorApproved);
stream.Write(IsAlt);
stream.Write(IsOwner);
stream.Write(IsOwned);
stream.Write(AccessType);
stream.Write(DatePublished);
stream.Write(PerformanceCost);

View File

@@ -18,7 +18,7 @@ public:
bool IsFriend = false;
bool IsModeratorApproved = false;
bool IsAlt = false;
bool IsOwner = false;
bool IsOwned = false;
uint32_t AccessType = 0;
uint32_t DatePublished = 0;
uint64_t PerformanceCost = 0;