mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-25 06:05:46 +03:00
fixes bug where Lobby Owner was unable to be set
This commit is contained in:
parent
9516d1ed7a
commit
fd14512e28
@ -94,6 +94,7 @@
|
||||
<ItemGroup>
|
||||
<Compile Include="Client\Achievements.cs" />
|
||||
<Compile Include="Client\Client.cs" />
|
||||
<Compile Include="Client\Lobby.cs" />
|
||||
<Compile Include="Client\RichPresence.cs" />
|
||||
<Compile Include="Client\Leaderboard.cs" />
|
||||
<Compile Include="Client\App.cs" />
|
||||
|
@ -421,7 +421,7 @@ public ulong Owner
|
||||
}
|
||||
return _owner;
|
||||
}
|
||||
private set
|
||||
set
|
||||
{
|
||||
if (_owner == value) return;
|
||||
if (client.native.matchmaking.SetLobbyOwner(CurrentLobby, value)) { _owner = value; }
|
||||
|
Loading…
Reference in New Issue
Block a user