Eluna fix mangos wotlk build

This commit is contained in:
Rochet2
2014-04-07 02:35:29 +03:00
committed by Foereaper
parent 7ed94d3e7a
commit 16b6514589
7 changed files with 10 additions and 23 deletions

View File

@@ -225,21 +225,5 @@ namespace LuaObject
sEluna->Push(L, obj->ToPlayer());
return 1;
}
int RemoveUInt64Value(lua_State* L, Object* obj)
{
uint16 index = sEluna->CHECKVAL<uint16>(L, 2);
uint64 value = sEluna->CHECKVAL<uint64>(L, 3);
obj->RemoveUInt64Value(index, value);
return 0;
}
int AddUInt64Value(lua_State* L, Object* obj)
{
uint16 index = sEluna->CHECKVAL<uint16>(L, 2);
uint64 value = sEluna->CHECKVAL<uint64>(L, 3);
obj->AddUInt64Value(index, value);
return 0;
}
};
#endif