From bfad15470f38c2000313a53ec670b87e15bbf87b Mon Sep 17 00:00:00 2001 From: thenecromancer Date: Wed, 20 Jan 2010 20:42:54 +0100 Subject: Fix pass/need opcode --HG-- branch : trunk --- src/game/Group.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3