Added a connection event when clients connect to the server.

This commit is contained in:
Yuri 2022-01-05 11:21:57 +03:00
parent 52549439fa
commit 73529f5266

View File

@ -227,6 +227,8 @@ begin
begin
Connections.Add(Con);
ConnectionHandler.HandleConnection(Con,True);
if Assigned(OnConnect) then
OnConnect(Sender, Con);
end;
end;