mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-30 00:28:08 -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)
|
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;
|
SearchExactVisitor<MWWorld::Ptr> searchVisitor;
|
||||||
searchVisitor.mRefNumIndexToFind = refNumIndex;
|
searchVisitor.mRefNumIndexToFind = refNumIndex;
|
||||||
searchVisitor.mMpNumToFind = mpNum;
|
searchVisitor.mMpNumToFind = mpNum;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user