From: miniduikboot Date: Fri, 10 Nov 2023 18:09:07 +0000 (+0100) Subject: Fix SA1629 violations X-Git-Tag: v1.9.0~14^2~3 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=acb923e3a34aca79739312b841f848bcf9cb6358;p=rhonda%2Fimpostor.git Fix SA1629 violations --- 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; } }