From dc74b46e11f0abfc14db692f0177249b98302f05 Mon Sep 17 00:00:00 2001 From: EmosewaMC <39972741+EmosewaMC@users.noreply.github.com> Date: Mon, 28 Mar 2022 03:58:40 -0700 Subject: [PATCH] off by one moment --- dGame/dComponents/PropertyManagementComponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dGame/dComponents/PropertyManagementComponent.cpp b/dGame/dComponents/PropertyManagementComponent.cpp index 506c1608..cd99fd78 100644 --- a/dGame/dComponents/PropertyManagementComponent.cpp +++ b/dGame/dComponents/PropertyManagementComponent.cpp @@ -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(propertyEntry->getUInt(9)); - this->claimedTime = propertyEntry->getUInt64(13); + this->claimedTime = propertyEntry->getUInt64(12); Load(); }