From 6c22b14a9be1a6fcb0f05833639abbd5f7d0276e Mon Sep 17 00:00:00 2001 From: SpeedyDevil <38978615+SpeedyDevil@users.noreply.github.com> Date: Wed, 28 Jul 2021 16:49:30 +0200 Subject: [PATCH] fix(spells): SpellTargetPoint3D doesnt inherits ISpellTarget (#665) --- Projects/UOContent/Spells/Targeting/SpellTargetPoint3D.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/UOContent/Spells/Targeting/SpellTargetPoint3D.cs b/Projects/UOContent/Spells/Targeting/SpellTargetPoint3D.cs index 039d8f6fe..8c9a03283 100644 --- a/Projects/UOContent/Spells/Targeting/SpellTargetPoint3D.cs +++ b/Projects/UOContent/Spells/Targeting/SpellTargetPoint3D.cs @@ -7,7 +7,7 @@ namespace Server.Spells void Target(IPoint3D p); } - public class SpellTargetPoint3D : Target + public class SpellTargetPoint3D : Target, ISpellTarget { private readonly bool m_CheckLOS; private ISpellTargetingPoint3D m_Spell;