Skip to content

Commit

Permalink
Core/PacketIO: Updated LootSlotType
Browse files Browse the repository at this point in the history
Closes #15890
  • Loading branch information
Shauren committed Nov 28, 2015
1 parent b852fae commit 14b8944
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/server/game/Loot/LootMgr.h
Expand Up @@ -121,11 +121,11 @@ enum LootError
// type of Loot Item in Loot View
enum LootSlotType
{
LOOT_SLOT_TYPE_ALLOW_LOOT = 2, // player can loot the item.
LOOT_SLOT_TYPE_ROLL_ONGOING = 6, // roll is ongoing. player cannot loot.
LOOT_SLOT_TYPE_MASTER = 4, // item can only be distributed by group loot master.
LOOT_SLOT_TYPE_LOCKED = 1, // item is shown in red. player cannot loot.
LOOT_SLOT_TYPE_OWNER = 7 // ignore binding confirmation and etc, for single player looting
LOOT_SLOT_TYPE_ALLOW_LOOT = 4, // player can loot the item.
LOOT_SLOT_TYPE_ROLL_ONGOING = 7, // roll is ongoing. player cannot loot.
LOOT_SLOT_TYPE_MASTER = 6, // item can only be distributed by group loot master.
LOOT_SLOT_TYPE_LOCKED = 3, // item is shown in red. player cannot loot.
LOOT_SLOT_TYPE_OWNER = 5 // ignore binding confirmation and etc, for single player looting
};

class Player;
Expand Down

1 comment on commit 14b8944

@MeliodasLIVE
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.