diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-06-28 23:06:02 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-06-28 23:06:10 +0200 |
commit | a3e34f562141e272fd64b44272fa58ea729bcffa (patch) | |
tree | 3e4efd21cdc6398369b1b46e8db5c00b038fc8e2 /src | |
parent | d15db5f7ea4ad3f03bc1a6ac867037e33815c2fa (diff) | |
parent | a36925937a9edee0afc3afd49440cae4ae9a73d1 (diff) |
Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Battlegrounds/BattlegroundScore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Battlegrounds/BattlegroundScore.h b/src/server/game/Battlegrounds/BattlegroundScore.h index 498999cfed7..ab4bd4ab529 100644 --- a/src/server/game/Battlegrounds/BattlegroundScore.h +++ b/src/server/game/Battlegrounds/BattlegroundScore.h @@ -56,7 +56,7 @@ struct BattlegroundScore friend class Battleground; protected: - BattlegroundScore(uint64 playerGuid, uint8 team) : PlayerGuid(playerGuid), TeamId(team == ALLIANCE ? 1 : 0), + BattlegroundScore(uint64 playerGuid, uint32 team) : PlayerGuid(playerGuid), TeamId(team == ALLIANCE ? 1 : 0), KillingBlows(0), Deaths(0), HonorableKills(0), BonusHonor(0), DamageDone(0), HealingDone(0) { } virtual ~BattlegroundScore() { } |