diff options
-rw-r--r-- | src/game/Group.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Group.cpp b/src/game/Group.cpp index 6fe82400718..c0bfc7ef182 100644 --- a/src/game/Group.cpp +++ b/src/game/Group.cpp @@ -737,14 +737,14 @@ void Group::CountRollVote(const uint64& playerGUID, const uint64& Guid, uint32 N { case ROLL_PASS: // Player choose pass { - SendLootRoll(0, playerGUID, 0, ROLL_PASS, *roll); + SendLootRoll(0, playerGUID, 128, ROLL_PASS, *roll); ++roll->totalPass; itr->second = PASS; } break; case ROLL_NEED: // player choose Need { - SendLootRoll(0, playerGUID, 0, ROLL_NEED, *roll); + SendLootRoll(0, playerGUID, 0, 0, *roll); ++roll->totalNeed; itr->second = NEED; } |