mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-28 07:35:55 +03:00
Fixed calling StreamServer.Shutdown clearing client interfaces too
This commit is contained in:
parent
08a4136a3e
commit
1a1809ba40
@ -85,8 +85,15 @@ internal virtual void SetInterface( bool server, SteamInterface iface )
|
|||||||
|
|
||||||
internal override void DestroyInterface( bool server )
|
internal override void DestroyInterface( bool server )
|
||||||
{
|
{
|
||||||
InterfaceClient = null;
|
if ( !server )
|
||||||
InterfaceServer = null;
|
{
|
||||||
|
InterfaceClient = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( server )
|
||||||
|
{
|
||||||
|
InterfaceServer = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user