diff options
author | p0wer <none@none> | 2010-03-02 20:48:40 -0600 |
---|---|---|
committer | p0wer <none@none> | 2010-03-02 20:48:40 -0600 |
commit | 7f5a4feba775f6e5b0b09d36064e7e6d0c153b9d (patch) | |
tree | 6ec06e0ec97d01f23dd0fbd979875830848365fe | |
parent | 8f74403b0de892880823cef18c2ac17515577055 (diff) |
Fix values for honor gain after SotA end. Someone slap me, because I cannot get things right on the first time, ever. :P
--HG--
branch : trunk
-rw-r--r-- | src/game/BattleGroundSA.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/BattleGroundSA.h b/src/game/BattleGroundSA.h index 18653d655c3..a8f85a6dbf0 100644 --- a/src/game/BattleGroundSA.h +++ b/src/game/BattleGroundSA.h @@ -32,9 +32,9 @@ class BattleGroundSAScore : public BattleGroundScore enum BG_SA_Honor { - BG_SA_HONOR_LOSE = 124, - BG_SA_HONOR_WIN = 248, - BG_SA_HONOR_END = 124 + // Both teams get 248 honor, winning team gets an extra 124. + BG_SA_HONOR_WIN = 124, + BG_SA_HONOR_END = 248 }; |