Reputation is sent as a float not an int

This commit is contained in:
EmosewaMC
2022-03-29 14:54:31 -07:00
parent ec9749ab85
commit 82ebdccdb2
3 changed files with 5 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ class PropertyEntranceComponent : public Component {
[[nodiscard]] LWOMAPID GetMapID() const { return m_MapID; };
PropertySelectQueryProperty SetPropertyValues(PropertySelectQueryProperty property, LWOCLONEID cloneId = LWOCLONEID_INVALID, std::string ownerName = "", std::string propertyName = "", std::string propertyDescription = "",
uint32_t reputation = 0, bool isBFF = false, bool isFriend = false, bool isModeratorApproved = false, bool isAlt = false, bool isOwned = false, uint32_t privacyOption = 0, uint32_t timeLastUpdated = 0, uint64_t performanceCost = 0);
float reputation = 0, bool isBFF = false, bool isFriend = false, bool isModeratorApproved = false, bool isAlt = false, bool isOwned = false, uint32_t privacyOption = 0, uint32_t timeLastUpdated = 0, uint64_t performanceCost = 0);
std::string BuildQuery(Entity* entity, int32_t sortMethod);