Core/PacketIO: Renamed some unknown fields in FeatureSystemStatus

This commit is contained in:
Shauren
2016-01-06 23:47:28 +01:00
parent 9f4e4b9546
commit 00383f4b12
3 changed files with 6 additions and 6 deletions

View File

@@ -1151,8 +1151,8 @@ void WorldSession::SendFeatureSystemStatus()
features.ComplaintStatus = 2;
features.ScrollOfResurrectionRequestsRemaining = 1;
features.ScrollOfResurrectionMaxRequestsPerDay = 1;
features.UnkInt27 = 60;
features.TwitterMsTillCanPost = 20;
features.TwitterPostThrottleLimit = 60;
features.TwitterPostThrottleCooldown = 20;
features.CfgRealmID = 2;
features.CfgRealmRecID = 0;
features.TokenPollTimeSeconds = 300;

View File

@@ -25,8 +25,8 @@ WorldPacket const* WorldPackets::System::FeatureSystemStatus::Write()
_worldPacket << uint32(ScrollOfResurrectionMaxRequestsPerDay);
_worldPacket << uint32(CfgRealmID);
_worldPacket << int32(CfgRealmRecID);
_worldPacket << uint32(UnkInt27);
_worldPacket << uint32(TwitterMsTillCanPost);
_worldPacket << uint32(TwitterPostThrottleLimit);
_worldPacket << uint32(TwitterPostThrottleCooldown);
_worldPacket << uint32(TokenPollTimeSeconds);
_worldPacket << uint32(TokenRedeemIndex);

View File

@@ -69,8 +69,8 @@ namespace WorldPackets
uint32 CfgRealmID = 0;
uint8 ComplaintStatus = 0;
int32 CfgRealmRecID = 0;
int32 UnkInt27 = 0;
int32 TwitterMsTillCanPost = 0;
int32 TwitterPostThrottleLimit = 0; ///< Number of twitter posts the client can send before they start being throttled
int32 TwitterPostThrottleCooldown = 0; ///< Time in seconds the client has to wait before posting again after hitting post limit
int32 TokenPollTimeSeconds = 0;
int32 TokenRedeemIndex = 0;
bool ItemRestorationButtonEnabled = false;