From 17cba13db5d8371ed9a467ab6ee9961d5deeb67a Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 8 Oct 2025 22:57:14 -0400 Subject: [PATCH] maint: changed text to be more clear when a source has no target when dealt damage --- Assets/Scripts/Core/Graph Tasks/DealDamage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Core/Graph Tasks/DealDamage.cs b/Assets/Scripts/Core/Graph Tasks/DealDamage.cs index 6c891ed..cf74c86 100644 --- a/Assets/Scripts/Core/Graph Tasks/DealDamage.cs +++ b/Assets/Scripts/Core/Graph Tasks/DealDamage.cs @@ -27,7 +27,7 @@ namespace Reset.Core { if (damageSource.value.source != null) { Debug.LogError($"Target {target.name} cannot be dealt damage as it does not implement the IDamageable interface. It was attempted an attack by {damageSource.value.source}"); } else { - Debug.LogError($"Target {target.name} cannot be dealt damage as it does not implement the IDamageable interface. This attack has no source."); + Debug.LogError($"Target {target.name} cannot be dealt damage as it does not implement the IDamageable interface."); } continue;