fix(spells): SpellTargetPoint3D doesnt inherits ISpellTarget (#665)

This commit is contained in:
SpeedyDevil 2021-07-28 16:49:30 +02:00 committed by GitHub
parent 06a577332d
commit 6c22b14a9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;