Skip to content

Commit

Permalink
Merge branch 'master' of github.com:arcemu/arcemu
Browse files Browse the repository at this point in the history
  • Loading branch information
dfighter1985 committed Feb 10, 2012
2 parents e51d590 + a9e293b commit e4048c3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/arcemu-world/BattlegroundMgr.cpp
Expand Up @@ -1578,10 +1578,15 @@ void CBattlegroundManager::SendBattlefieldStatus(Player* plr, BattleGroundStatus
data << uint32(60) << uint32(0); // Time / Elapsed time
break;
case BGSTATUS_READY: // Ready to join!
data << MapId << Time;
data << MapId;
data << uint64(0);
data << Time;
break;
case BGSTATUS_TIME:
data << MapId << uint32(120000) << Time;
data << MapId;
data << uint64(0);
data << uint32(0);
data << Time;
if(IS_ARENA(Type))
data << uint8(0);
else
Expand Down

0 comments on commit e4048c3

Please sign in to comment.