diff options
Diffstat (limited to '')
-rw-r--r-- | src/objects/Object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objects/Object.cpp b/src/objects/Object.cpp index 21aeb1e4..9d60c98d 100644 --- a/src/objects/Object.cpp +++ b/src/objects/Object.cpp @@ -826,7 +826,7 @@ IsObjectPointerValid(CObject *pObject) { if (!pObject) return false; - int index = CPools::GetObjectPool()->GetJustIndex(pObject); + int index = CPools::GetObjectPool()->GetJustIndex_NoFreeAssert(pObject); #ifdef FIX_BUGS if (index < 0 || index >= CPools::GetObjectPool()->GetSize()) #else |