mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-13 20:39:40 +00:00
Renamed getActivator to getActivators.
This commit is contained in:
parent
4842c56cb5
commit
385824aee0
3 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@ void CSMTools::ReferenceableCheckStage::perform(int stage, std::vector< std::str
|
||||||
|
|
||||||
if ((stage - PrevSum) <= mActivatorsSize)
|
if ((stage - PrevSum) <= mActivatorsSize)
|
||||||
{
|
{
|
||||||
activatorCheck(stage - PrevSum, mReferencables.getActivator(), messages);
|
activatorCheck(stage - PrevSum, mReferencables.getActivators(), messages);
|
||||||
CheckPerformed = true;
|
CheckPerformed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -237,7 +237,7 @@ const CSMWorld::RefIdDataContainer< ESM::Book >& CSMWorld::RefIdData::getBooks()
|
||||||
return mBooks;
|
return mBooks;
|
||||||
}
|
}
|
||||||
|
|
||||||
const CSMWorld::RefIdDataContainer< ESM::Activator >& CSMWorld::RefIdData::getActivator() const
|
const CSMWorld::RefIdDataContainer< ESM::Activator >& CSMWorld::RefIdData::getActivators() const
|
||||||
{
|
{
|
||||||
return mActivators;
|
return mActivators;
|
||||||
}
|
}
|
||||||
|
|
|
@ -222,7 +222,7 @@ namespace CSMWorld
|
||||||
|
|
||||||
//RECORD CONTAINERS ACCESS METHODS
|
//RECORD CONTAINERS ACCESS METHODS
|
||||||
const RefIdDataContainer<ESM::Book>& getBooks() const;
|
const RefIdDataContainer<ESM::Book>& getBooks() const;
|
||||||
const RefIdDataContainer<ESM::Activator>& getActivator() const;
|
const RefIdDataContainer<ESM::Activator>& getActivators() const;
|
||||||
const RefIdDataContainer<ESM::Potion>& getPotions() const;
|
const RefIdDataContainer<ESM::Potion>& getPotions() const;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue