mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
remove extra code
This commit is contained in:
@@ -240,7 +240,6 @@ namespace LuaGameObject
|
|||||||
*
|
*
|
||||||
* @param uint32 entry : The entry of the [Item]
|
* @param uint32 entry : The entry of the [Item]
|
||||||
* @param uint32 amount = 1 : amount of the [Item] to add to the loot
|
* @param uint32 amount = 1 : amount of the [Item] to add to the loot
|
||||||
* @return uint32 itemGUIDlow : low GUID of the [Item]
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int AddLoot(lua_State* L, GameObject* go)
|
int AddLoot(lua_State* L, GameObject* go)
|
||||||
@@ -248,52 +247,16 @@ namespace LuaGameObject
|
|||||||
int i = 1;
|
int i = 1;
|
||||||
int argAmount = lua_gettop(L);
|
int argAmount = lua_gettop(L);
|
||||||
|
|
||||||
#if defined TRINITY || defined AZEROTHCORE
|
|
||||||
CharacterDatabaseTransaction trans = CharacterDatabase.BeginTransaction();
|
|
||||||
#endif
|
|
||||||
uint8 addedItems = 0;
|
uint8 addedItems = 0;
|
||||||
while (i + 2 <= argAmount)
|
while (i + 2 <= argAmount)
|
||||||
{
|
{
|
||||||
uint32 entry = Eluna::CHECKVAL<uint32>(L, ++i);
|
uint32 entry = Eluna::CHECKVAL<uint32>(L, ++i);
|
||||||
uint32 amount = Eluna::CHECKVAL<uint32>(L, ++i);
|
uint32 amount = Eluna::CHECKVAL<uint32>(L, ++i);
|
||||||
|
|
||||||
#if defined TRINITY || AZEROTHCORE
|
LootStoreItem storeItem(entry, 0, 100, 0, LOOT_MODE_DEFAULT, 0, amount, amount);
|
||||||
ItemTemplate const* item_proto = eObjectMgr->GetItemTemplate(entry);
|
go->loot.AddItem(storeItem);
|
||||||
#else
|
++addedItems;
|
||||||
ItemTemplate const* item_proto = ObjectMgr::GetItemPrototype(entry);
|
|
||||||
#endif
|
|
||||||
if (!item_proto)
|
|
||||||
{
|
|
||||||
luaL_error(L, "Item entry %d does not exist", entry);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (amount < 1 || (item_proto->MaxCount > 0 && amount > uint32(item_proto->MaxCount)))
|
|
||||||
{
|
|
||||||
luaL_error(L, "Item entry %d has invalid amount %d", entry, amount);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (Item* item = Item::CreateItem(entry, amount))
|
|
||||||
{
|
|
||||||
#if defined TRINITY || AZEROTHCORE
|
|
||||||
item->SaveToDB(trans);
|
|
||||||
#else
|
|
||||||
item->SaveToDB();
|
|
||||||
#endif
|
|
||||||
LootStoreItem storeItem(item->GetEntry(), 0, 100, 0, LOOT_MODE_DEFAULT, 0, item->GetCount(), item->GetCount());
|
|
||||||
go->loot.AddItem(storeItem);
|
|
||||||
#if defined TRINITY || AZEROTHCORE
|
|
||||||
Eluna::Push(L, item->GetGUID().GetCounter());
|
|
||||||
#else
|
|
||||||
Eluna::Push(L, item->GetGUIDLow());
|
|
||||||
#endif
|
|
||||||
++addedItems;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined TRINITY || AZEROTHCORE
|
|
||||||
CharacterDatabase.CommitTransaction(trans);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return addedItems;
|
return addedItems;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user