Eluna remove unused method bodies, Rename method bodies correctly, enable some methods implemented on mangos and TC already..

This commit is contained in:
Rochet2
2014-06-29 11:51:11 +03:00
committed by Foereaper
parent fdd63cd716
commit c2a3ea5043
7 changed files with 22 additions and 77 deletions

View File

@@ -29,7 +29,7 @@ namespace LuaSpell
return 1;
}
int GetId(lua_State* L, Spell* spell)
int GetEntry(lua_State* L, Spell* spell)
{
Eluna::Push(L, spell->m_spellInfo->Id);
return 1;
@@ -112,7 +112,7 @@ namespace LuaSpell
return 0;
}
int cancel(lua_State* /*L*/, Spell* spell)
int Cancel(lua_State* /*L*/, Spell* spell)
{
spell->cancel();
return 0;