tab spacing

This commit is contained in:
EmosewaMC 2022-03-29 19:47:15 -07:00
parent af15cc60eb
commit 9f16284595
2 changed files with 12 additions and 10 deletions

View File

@ -31,6 +31,7 @@ void PropertySelectQueryProperty::Serialize(RakNet::BitStream& stream) const
stream.Write(IsOwned);
stream.Write(AccessType);
stream.Write(DateLastPublished);
stream.Write(PerformanceIndex);
stream.Write(PerformanceCost);
}

View File

@ -21,5 +21,6 @@ public:
bool IsOwned = false; // Whether or not the property is owned
uint32_t AccessType = 0; // The privacy option of the property
uint32_t DateLastPublished = 0; // The last day the property was published
uint64_t PerformanceCost = 0; // The performance cost of the property
float PerformanceCost = 0; // The performance cost of the property
uint32_t PerformanceIndex = 0; // The performance index of the property? Always 0?
};