mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 06:55:54 -04:00
[Client] Ensure that objects searched for have a valid reference number
This commit is contained in:
parent
92553b8e29
commit
f6d36d5d80
@ -526,6 +526,10 @@ namespace MWWorld
|
||||
*/
|
||||
Ptr CellStore::searchExact (unsigned int refNumIndex, unsigned int mpNum)
|
||||
{
|
||||
// Ensure that all objects searched for have a valid reference number
|
||||
if (refNumIndex == 0 && mpNum == 0)
|
||||
return 0;
|
||||
|
||||
SearchExactVisitor<MWWorld::Ptr> searchVisitor;
|
||||
searchVisitor.mRefNumIndexToFind = refNumIndex;
|
||||
searchVisitor.mMpNumToFind = mpNum;
|
||||
|
Loading…
x
Reference in New Issue
Block a user