From f4b0c406dc2a5bb0fa6e36abebbc763b1153aadb Mon Sep 17 00:00:00 2001 From: Sam Bellomo <71790295+SamuelBellomo@users.noreply.github.com> Date: Tue, 3 Jan 2023 10:04:09 -0500 Subject: [PATCH] wrong comment correction --- Assets/Scripts/Gameplay/GameplayObjects/IDamageable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Gameplay/GameplayObjects/IDamageable.cs b/Assets/Scripts/Gameplay/GameplayObjects/IDamageable.cs index bb2d8bb8e..23185d631 100644 --- a/Assets/Scripts/Gameplay/GameplayObjects/IDamageable.cs +++ b/Assets/Scripts/Gameplay/GameplayObjects/IDamageable.cs @@ -14,7 +14,7 @@ public interface IDamageable /// Receives HP damage or healing. /// /// The Character responsible for the damage. May be null. - /// The damage done. Positive value is damage, negative is healing. + /// The damage done. Negative value is damage, positive is healing. void ReceiveHP(ServerCharacter inflicter, int HP); ///