mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 15:41:13 -04:00
[Server] Use consistent order for script functions for Spells
Fix a small typo.
This commit is contained in:
parent
1f3a17eff7
commit
85ab67fff4
@ -72,6 +72,14 @@ public:
|
|||||||
*/
|
*/
|
||||||
static unsigned int GetSpellbookChangesAction(unsigned short pid) noexcept;
|
static unsigned int GetSpellbookChangesAction(unsigned short pid) noexcept;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Get the number of indexes in a player's latest spells active changes.
|
||||||
|
*
|
||||||
|
* \param pid The player ID whose spells active changes should be used.
|
||||||
|
* \return The number of indexes for spells active changes.
|
||||||
|
*/
|
||||||
|
static unsigned int GetSpellsActiveChangesSize(unsigned short pid) noexcept;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Get the action type used in a player's latest spells active changes.
|
* \brief Get the action type used in a player's latest spells active changes.
|
||||||
*
|
*
|
||||||
@ -80,14 +88,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
static unsigned int GetSpellsActiveChangesAction(unsigned short pid) noexcept;
|
static unsigned int GetSpellsActiveChangesAction(unsigned short pid) noexcept;
|
||||||
|
|
||||||
/**
|
|
||||||
* \brief Get the number of indexes in a player's latest spells active changes.
|
|
||||||
*
|
|
||||||
* \param pid The player ID whose spells active changes should be used.
|
|
||||||
* \return The number of indexes.
|
|
||||||
*/
|
|
||||||
static unsigned int GetSpellsActiveChangesSize(unsigned short pid) noexcept;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Set the action type in a player's spellbook changes.
|
* \brief Set the action type in a player's spellbook changes.
|
||||||
*
|
*
|
||||||
@ -117,7 +117,7 @@ public:
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Add a new active spell to the spells active changes for a player,
|
* \brief Add a new active spell to the spells active changes for a player,
|
||||||
* using the temporary effect times stored so far.
|
* using the temporary effect values stored so far.
|
||||||
*
|
*
|
||||||
* \param pid The player ID whose spells active changes should be used.
|
* \param pid The player ID whose spells active changes should be used.
|
||||||
* \param spellId The spellId of the spell.
|
* \param spellId The spellId of the spell.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user