mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
Forgot a few spell method documentations
This commit is contained in:
@@ -9,7 +9,11 @@
|
|||||||
|
|
||||||
namespace LuaSpell
|
namespace LuaSpell
|
||||||
{
|
{
|
||||||
/* BOOLEAN */
|
/**
|
||||||
|
* Returns 'true' if the &Spell is automatically repeating, false otherwise.
|
||||||
|
*
|
||||||
|
* @return boolean isRepeatable
|
||||||
|
*/
|
||||||
int IsAutoRepeat(lua_State* L, Spell* spell)
|
int IsAutoRepeat(lua_State* L, Spell* spell)
|
||||||
{
|
{
|
||||||
Eluna::Push(L, spell->IsAutoRepeat());
|
Eluna::Push(L, spell->IsAutoRepeat());
|
||||||
@@ -146,7 +150,11 @@ namespace LuaSpell
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* OTHER */
|
/**
|
||||||
|
* Casts the &Spell.
|
||||||
|
*
|
||||||
|
* May need further documentation.
|
||||||
|
*/
|
||||||
int Cast(lua_State* L, Spell* spell)
|
int Cast(lua_State* L, Spell* spell)
|
||||||
{
|
{
|
||||||
bool skipCheck = Eluna::CHECKVAL<bool>(L, 2);
|
bool skipCheck = Eluna::CHECKVAL<bool>(L, 2);
|
||||||
|
|||||||
Reference in New Issue
Block a user