diff --git a/logic/Server/RpcServices.cs b/logic/Server/RpcServices.cs index 40624c6..4136982 100644 --- a/logic/Server/RpcServices.cs +++ b/logic/Server/RpcServices.cs @@ -346,7 +346,7 @@ namespace Server return Task.FromResult(boolRes); } var gameID = communicationToGameID[request.PlayerId]; - boolRes.ActSuccess = game.UseActiveSkill(gameID, request.SkillId, 0); + boolRes.ActSuccess = game.UseActiveSkill(gameID, request.SkillId, request.SkillParam); return Task.FromResult(boolRes); }