[Server] Make capitalization consistent for AI-related script functions

pull/471/head
David Cernat 6 years ago
parent 9598212aad
commit aec0c5bd49

@ -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…
Cancel
Save