Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-n committed Jul 31, 2024
1 parent 60b3cfa commit 9798cf7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Dapr/ServerClients/GameServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,12 @@ public async ValueTask<bool> DisconnectPlayerAsync(string playerName)
return await this._client.InvokeMethodAsync<string, bool>(this._targetAppId, nameof(this.DisconnectPlayerAsync), playerName).ConfigureAwait(false);
}

/// <inheritdoc />
public async ValueTask<bool> DisconnectAccountAsync(string playerName)
{
return await this._client.InvokeMethodAsync<string, bool>(this._targetAppId, nameof(this.DisconnectAccountAsync), playerName).ConfigureAwait(false);
}

/// <inheritdoc />
public async ValueTask<bool> BanPlayerAsync(string playerName)
{
Expand Down

0 comments on commit 9798cf7

Please sign in to comment.