From 9798cf779f38409cb35fecb76b078fd61c582d22 Mon Sep 17 00:00:00 2001 From: sven-n Date: Wed, 31 Jul 2024 07:14:01 +0200 Subject: [PATCH] build fix --- src/Dapr/ServerClients/GameServer.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Dapr/ServerClients/GameServer.cs b/src/Dapr/ServerClients/GameServer.cs index 9b44efd22..d0c9c7039 100644 --- a/src/Dapr/ServerClients/GameServer.cs +++ b/src/Dapr/ServerClients/GameServer.cs @@ -161,6 +161,12 @@ public async ValueTask DisconnectPlayerAsync(string playerName) return await this._client.InvokeMethodAsync(this._targetAppId, nameof(this.DisconnectPlayerAsync), playerName).ConfigureAwait(false); } + /// + public async ValueTask DisconnectAccountAsync(string playerName) + { + return await this._client.InvokeMethodAsync(this._targetAppId, nameof(this.DisconnectAccountAsync), playerName).ConfigureAwait(false); + } + /// public async ValueTask BanPlayerAsync(string playerName) {