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

@@ -215,12 +215,6 @@ namespace LuaItem
return 1;
}
int GetGUID(lua_State* L, Item* item)
{
Eluna::Push(L, item->GetGUIDLow());
return 1;
}
int GetOwnerGUID(lua_State* L, Item* item)
{
#ifdef MANGOS
@@ -261,12 +255,6 @@ namespace LuaItem
return 1;
}
int GetGUIDLow(lua_State* L, Item* item)
{
Eluna::Push(L, item->GetGUIDLow());
return 1;
}
int GetEnchantmentId(lua_State* L, Item* item)
{
uint32 enchant_slot = Eluna::CHECKVAL<uint32>(L, 2);