Core/PacketIO: Update SMSG_FEATURE_SYSTEM_STATUS

This commit is contained in:
Carbenium
2015-07-06 01:52:21 +02:00
parent 8d0f1134b7
commit 21ab4bb14c
3 changed files with 3 additions and 3 deletions

View File

@@ -1162,7 +1162,7 @@ void WorldSession::SendFeatureSystemStatus()
features.EuropaTicketSystemStatus->ThrottleState.LastResetTimeBeforeNow = 111111;
features.ComplaintStatus = 0;
features.TutorialsEnabled = true;
features.UnkBit90 = true;
features.NPETutorialsEnabled = true;
/// END OF DUMMY VALUES
features.EuropaTicketSystemStatus->TicketsEnabled = sWorld->getBoolConfig(CONFIG_SUPPORT_TICKETS_ENABLED);

View File

@@ -43,7 +43,7 @@ WorldPacket const* WorldPackets::System::FeatureSystemStatus::Write()
_worldPacket.WriteBit(CharUndeleteEnabled);
_worldPacket.WriteBit(RestrictedAccount);
_worldPacket.WriteBit(TutorialsEnabled);
_worldPacket.WriteBit(UnkBit90);
_worldPacket.WriteBit(NPETutorialsEnabled);
_worldPacket.WriteBit(TwitterEnabled);
_worldPacket.WriteBit(CommerceSystemEnabled);
_worldPacket.WriteBit(Unk67);

View File

@@ -83,7 +83,7 @@ namespace WorldPackets
bool RestrictedAccount = false;
bool TutorialsEnabled = false;
bool UnkBit90 = false;
bool NPETutorialsEnabled = false;
bool UnkBit61 = false;
};