mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 04:15:35 +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)
|
||||
{
|
||||
activatorCheck(stage - PrevSum, mReferencables.getActivator(), messages);
|
||||
activatorCheck(stage - PrevSum, mReferencables.getActivators(), messages);
|
||||
CheckPerformed = true;
|
||||
}
|
||||
|
||||
|
|
|
@ -237,7 +237,7 @@ const CSMWorld::RefIdDataContainer< ESM::Book >& CSMWorld::RefIdData::getBooks()
|
|||
return mBooks;
|
||||
}
|
||||
|
||||
const CSMWorld::RefIdDataContainer< ESM::Activator >& CSMWorld::RefIdData::getActivator() const
|
||||
const CSMWorld::RefIdDataContainer< ESM::Activator >& CSMWorld::RefIdData::getActivators() const
|
||||
{
|
||||
return mActivators;
|
||||
}
|
||||
|
|
|
@ -222,7 +222,7 @@ namespace CSMWorld
|
|||
|
||||
//RECORD CONTAINERS ACCESS METHODS
|
||||
const RefIdDataContainer<ESM::Book>& getBooks() const;
|
||||
const RefIdDataContainer<ESM::Activator>& getActivator() const;
|
||||
const RefIdDataContainer<ESM::Activator>& getActivators() const;
|
||||
const RefIdDataContainer<ESM::Potion>& getPotions() const;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue