forked from mirror/openmw-tes3mp
[Server] Make capitalization consistent for AI-related script functions
This commit is contained in:
parent
9598212aad
commit
aec0c5bd49
2 changed files with 3 additions and 3 deletions
|
@ -1009,7 +1009,7 @@ void RecordsDynamicFunctions::SetRecordFatigue(int fatigue) noexcept
|
|||
tempOverrides.hasFatigue = true;
|
||||
}
|
||||
|
||||
void RecordsDynamicFunctions::SetRecordAiFight(int aiFight) noexcept
|
||||
void RecordsDynamicFunctions::SetRecordAIFight(int aiFight) noexcept
|
||||
{
|
||||
unsigned short writeRecordsType = WorldstateFunctions::writeWorldstate.recordsType;
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
{"SetRecordLevel", RecordsDynamicFunctions::SetRecordLevel},\
|
||||
{"SetRecordMagicka", RecordsDynamicFunctions::SetRecordMagicka},\
|
||||
{"SetRecordFatigue", RecordsDynamicFunctions::SetRecordFatigue},\
|
||||
{"SetRecordAiFight", RecordsDynamicFunctions::SetRecordAiFight},\
|
||||
{"SetRecordAIFight", RecordsDynamicFunctions::SetRecordAIFight},\
|
||||
\
|
||||
{"SetRecordIdByIndex", RecordsDynamicFunctions::SetRecordIdByIndex},\
|
||||
{"SetRecordEnchantmentIdByIndex", RecordsDynamicFunctions::SetRecordEnchantmentIdByIndex},\
|
||||
|
@ -710,7 +710,7 @@ public:
|
|||
* \param aiFight The AI fight value of the record.
|
||||
* \return void
|
||||
*/
|
||||
static void SetRecordAiFight(int aiFight) noexcept;
|
||||
static void SetRecordAIFight(int aiFight) noexcept;
|
||||
|
||||
/**
|
||||
* \brief Set the id of the record at a certain index in the records stored on the server.
|
||||
|
|
Loading…
Reference in a new issue