From acb923e3a34aca79739312b841f848bcf9cb6358 Mon Sep 17 00:00:00 2001 From: miniduikboot Date: Fri, 10 Nov 2023 19:09:07 +0100 Subject: [PATCH] Fix SA1629 violations --- src/Impostor.Api/Events/Game/Player/IPlayerMurderEvent.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Impostor.Api/Events/Game/Player/IPlayerMurderEvent.cs b/src/Impostor.Api/Events/Game/Player/IPlayerMurderEvent.cs index 7c49e7b..827dc95 100644 --- a/src/Impostor.Api/Events/Game/Player/IPlayerMurderEvent.cs +++ b/src/Impostor.Api/Events/Game/Player/IPlayerMurderEvent.cs @@ -9,8 +9,8 @@ namespace Impostor.Api.Events.Player /// /// This event works regardless of server authority is enabled or not. /// - /// If you want to cancel this kill, listen to - /// If you want to know about players that were voted out, listed to + /// If you want to cancel this kill, listen to . + /// If you want to know about players that were voted out, listed to . /// public interface IPlayerMurderEvent : IPlayerEvent { @@ -20,10 +20,10 @@ namespace Impostor.Api.Events.Player IInnerPlayerControl Victim { get; } /// - /// Gets the result of the event. + /// Gets the result of the event. /// /// - /// Note that if FailedError or FailedProtected is set, the kill did not take place + /// Note that if FailedError or FailedProtected is set, the kill did not take place. /// MurderResultFlags Result { get; } } -- 2.39.5