1771
Modification Help / Re: TCPObject's onDisconnect not working properly when using .disconnect()
« on: June 16, 2014, 12:16:26 PM »
This is mainly intended behavior. Just do this:
function h::disconnect(%this)
{
Parent::disconnect(%this);
%this.onDisconnect();
}
(doesn't need to be in a package)
function h::disconnect(%this)
{
Parent::disconnect(%this);
%this.onDisconnect();
}
(doesn't need to be in a package)

[/nobbc]