mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-04-01 08:06:45 +00:00
[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;
|
tempOverrides.hasFatigue = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RecordsDynamicFunctions::SetRecordAiFight(int aiFight) noexcept
|
void RecordsDynamicFunctions::SetRecordAIFight(int aiFight) noexcept
|
||||||
{
|
{
|
||||||
unsigned short writeRecordsType = WorldstateFunctions::writeWorldstate.recordsType;
|
unsigned short writeRecordsType = WorldstateFunctions::writeWorldstate.recordsType;
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,7 @@
|
||||||
{"SetRecordLevel", RecordsDynamicFunctions::SetRecordLevel},\
|
{"SetRecordLevel", RecordsDynamicFunctions::SetRecordLevel},\
|
||||||
{"SetRecordMagicka", RecordsDynamicFunctions::SetRecordMagicka},\
|
{"SetRecordMagicka", RecordsDynamicFunctions::SetRecordMagicka},\
|
||||||
{"SetRecordFatigue", RecordsDynamicFunctions::SetRecordFatigue},\
|
{"SetRecordFatigue", RecordsDynamicFunctions::SetRecordFatigue},\
|
||||||
{"SetRecordAiFight", RecordsDynamicFunctions::SetRecordAiFight},\
|
{"SetRecordAIFight", RecordsDynamicFunctions::SetRecordAIFight},\
|
||||||
\
|
\
|
||||||
{"SetRecordIdByIndex", RecordsDynamicFunctions::SetRecordIdByIndex},\
|
{"SetRecordIdByIndex", RecordsDynamicFunctions::SetRecordIdByIndex},\
|
||||||
{"SetRecordEnchantmentIdByIndex", RecordsDynamicFunctions::SetRecordEnchantmentIdByIndex},\
|
{"SetRecordEnchantmentIdByIndex", RecordsDynamicFunctions::SetRecordEnchantmentIdByIndex},\
|
||||||
|
@ -710,7 +710,7 @@ public:
|
||||||
* \param aiFight The AI fight value of the record.
|
* \param aiFight The AI fight value of the record.
|
||||||
* \return void
|
* \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.
|
* \brief Set the id of the record at a certain index in the records stored on the server.
|
||||||
|
|
Loading…
Reference in a new issue