Core/Loot: Implemented automatic flagging of tracking quests from loot
Port From (https://github.com/TrinityCore/TrinityCore/commit/d913e38cbab9521c80d826417093d22b2c4a1c1a)
This commit is contained in:
@@ -1509,8 +1509,9 @@ namespace Framework.Constants
|
||||
|
||||
public enum LootStoreItemType
|
||||
{
|
||||
Item = 0,
|
||||
Reference = 1,
|
||||
Item = 0,
|
||||
Reference = 1,
|
||||
Currency = 2,
|
||||
TrackingQuest = 3
|
||||
}
|
||||
}
|
||||
|
||||
@@ -369,7 +369,7 @@ namespace Framework.Constants
|
||||
CommandNpcShowlootMoney = 292,
|
||||
CommandNpcShowlootLabel2 = 293,
|
||||
CommandNpcShowlootSublabel = 294,
|
||||
CommandNpcShowlootEntry2 = 295,
|
||||
CommandNpcShowlootTrackingQuest = 295,
|
||||
CommandNpcShowLootCurrency = 296,
|
||||
|
||||
// End
|
||||
|
||||
@@ -68,7 +68,8 @@ namespace Framework.Constants
|
||||
public enum LootItemType
|
||||
{
|
||||
Item = 0,
|
||||
Currency = 1
|
||||
Currency = 1,
|
||||
TrackingQuest = 2
|
||||
}
|
||||
|
||||
public enum LootError
|
||||
|
||||
Reference in New Issue
Block a user