aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Reputation/ReputationMgr.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2023-08-15 13:00:43 +0200
committerShauren <shauren.trinity@gmail.com>2023-08-15 13:00:43 +0200
commit825c697a764017349ca94ecfca8f30a8365666c0 (patch)
tree83274f0a06a8b5f59bdb6ff2937f9f4a77efb179 /src/server/game/Reputation/ReputationMgr.h
parentede36202162fc7daa49ed2ef51948f65418dd1bc (diff)
Core/Misc: Removed structure bitfield definitions that don't do anything
Diffstat (limited to 'src/server/game/Reputation/ReputationMgr.h')
-rw-r--r--src/server/game/Reputation/ReputationMgr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/game/Reputation/ReputationMgr.h b/src/server/game/Reputation/ReputationMgr.h
index 5a9b999cf7b..d665a3ef556 100644
--- a/src/server/game/Reputation/ReputationMgr.h
+++ b/src/server/game/Reputation/ReputationMgr.h
@@ -153,10 +153,10 @@ class TC_GAME_API ReputationMgr
Player* _player;
FactionStateList _factions;
ForcedReactions _forcedReactions;
- uint8 _visibleFactionCount :8;
- uint8 _honoredFactionCount :8;
- uint8 _reveredFactionCount :8;
- uint8 _exaltedFactionCount :8;
+ uint8 _visibleFactionCount;
+ uint8 _honoredFactionCount;
+ uint8 _reveredFactionCount;
+ uint8 _exaltedFactionCount;
bool _sendFactionIncreased; //! Play visual effect on next SMSG_SET_FACTION_STANDING sent
};