missing files

This commit is contained in:
Emagi 2024-03-18 18:17:01 -04:00
parent f48465c654
commit 9ac9da15a5
2 changed files with 3 additions and 1 deletions

View file

@ -231,6 +231,7 @@ public:
ZoneServer* GetZoningDestination() { return zoning_destination; }
Player* GetPlayer(){ return player; }
EQStream* getConnection(){ return eqs; }
void setConnection(EQStream* ieqs){ eqs = ieqs; }
inline int32 GetIP() { return ip; }
inline int16 GetPort() { return port; }

View file

@ -323,8 +323,9 @@ void EQStreamFactory::CheckTimeout(bool remove_all)
#ifdef WORLD
client_list.RemoveConnection(temp->second);
#endif
delete temp->second;
EQStream* stream = temp->second;
Streams.erase(temp);
delete stream;
continue;
}
}