[RunUO 2.6] Druid spells are targeting 13 tiles away from the target, while most magery/necro spells are like 10 tiles. Where do i change these settings at?
 
Last edited:
for example:
Code:
        private class InternalTarget : Target
        {
            private DruidVolcanicEruptionSpell m_Owner;

            public InternalTarget(DruidVolcanicEruptionSpell owner) : base(12, true, TargetFlags.None)
            {
                m_Owner = owner;
            }
base(12, true, TargetFlags.None)
here 12 - it's range of target
 
Back