diff --git a/Scripts/Spells/Necromancy/SummonFamiliar.cs b/Scripts/Spells/Necromancy/SummonFamiliar.cs index d89e67767..ef9ed9c7c 100644 --- a/Scripts/Spells/Necromancy/SummonFamiliar.cs +++ b/Scripts/Spells/Necromancy/SummonFamiliar.cs @@ -124,8 +124,8 @@ namespace Server.Spells.Necromancy AddHtmlLocalized( 30, 26, 200, 20, 1060147, EnabledColor16, false, false ); // Chose thy familiar... - double necro = from.Skills[SkillName.Necromancy].Base; - double spirit = from.Skills[SkillName.SpiritSpeak].Base; + double necro = from.Skills[SkillName.Necromancy].Value; + double spirit = from.Skills[SkillName.SpiritSpeak].Value; for ( int i = 0; i < entries.Length; ++i ) { @@ -152,8 +152,8 @@ namespace Server.Spells.Necromancy { SummonFamiliarEntry entry = m_Entries[index]; - double necro = m_From.Skills[SkillName.Necromancy].Base; - double spirit = m_From.Skills[SkillName.SpiritSpeak].Base; + double necro = m_From.Skills[SkillName.Necromancy].Value; + double spirit = m_From.Skills[SkillName.SpiritSpeak].Value; BaseCreature check = (BaseCreature)SummonFamiliarSpell.Table[m_From];