fix(Core/PacketIO): Reintroduce requeueing packets that are sent during login but need you to be logged in (#15145)

This commit is contained in:
Kitzunu
2023-02-21 04:33:18 +01:00
committed by GitHub
parent eacd9247cc
commit cc6fcb6912
3 changed files with 3 additions and 15 deletions

View File

@@ -1066,8 +1066,6 @@ public: // opcodes handlers
uint32 GetOfflineTime() const { return _offlineTime; }
bool IsKicked() const { return _kicked; }
void SetKicked(bool val) { _kicked = val; }
void SetShouldSetOfflineInDB(bool val) { _shouldSetOfflineInDB = val; }
bool GetShouldSetOfflineInDB() const { return _shouldSetOfflineInDB; }
bool IsSocketClosed() const;
/*
@@ -1177,7 +1175,6 @@ private:
ObjectGuid m_currentBankerGUID;
uint32 _offlineTime;
bool _kicked;
bool _shouldSetOfflineInDB;
// Packets cooldown
time_t _calendarEventCreationCooldown;