off by one moment

This commit is contained in:
EmosewaMC 2022-03-28 03:58:40 -07:00
parent 148c177d27
commit dc74b46e11

View File

@ -71,7 +71,7 @@ PropertyManagementComponent::PropertyManagementComponent(Entity* parent) : Compo
this->propertyName = propertyEntry->getString(5).c_str();
this->propertyDescription = propertyEntry->getString(6).c_str();
this->privacyOption = static_cast<PropertyPrivacyOption>(propertyEntry->getUInt(9));
this->claimedTime = propertyEntry->getUInt64(13);
this->claimedTime = propertyEntry->getUInt64(12);
Load();
}