aboutsummaryrefslogtreecommitdiff
path: root/src/game/Group.cpp
diff options
context:
space:
mode:
authorthenecromancer <none@none>2010-01-20 20:42:54 +0100
committerthenecromancer <none@none>2010-01-20 20:42:54 +0100
commitbfad15470f38c2000313a53ec670b87e15bbf87b (patch)
treea02d660d9731d5263b256492806fc1b3f0fc35e2 /src/game/Group.cpp
parente350775de7152fd9056bb64b4d5523b1d23195f1 (diff)
Fix pass/need opcode
--HG-- branch : trunk
Diffstat (limited to 'src/game/Group.cpp')
-rw-r--r--src/game/Group.cpp4
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;
}