Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -28,7 +28,7 @@ namespace Server.Spells.Necromancy
|
|||
|
||||
private static Hashtable m_Table = new Hashtable();
|
||||
|
||||
public static Hashtable Table{ get{ return m_Table; } }
|
||||
public static Hashtable Table => m_Table;
|
||||
|
||||
public override bool CheckCast()
|
||||
{
|
||||
|
|
@ -63,7 +63,7 @@ namespace Server.Spells.Necromancy
|
|||
new SummonFamiliarEntry( typeof( VampireBatFamiliar ), 1060144, 100.0, 100.0 ) // Vampire Bat
|
||||
};
|
||||
|
||||
public static SummonFamiliarEntry[] Entries{ get{ return m_Entries; } }
|
||||
public static SummonFamiliarEntry[] Entries => m_Entries;
|
||||
}
|
||||
|
||||
public class SummonFamiliarEntry
|
||||
|
|
@ -73,10 +73,10 @@ namespace Server.Spells.Necromancy
|
|||
private double m_ReqNecromancy;
|
||||
private double m_ReqSpiritSpeak;
|
||||
|
||||
public Type Type{ get{ return m_Type; } }
|
||||
public object Name{ get{ return m_Name; } }
|
||||
public double ReqNecromancy{ get{ return m_ReqNecromancy; } }
|
||||
public double ReqSpiritSpeak{ get{ return m_ReqSpiritSpeak; } }
|
||||
public Type Type => m_Type;
|
||||
public object Name => m_Name;
|
||||
public double ReqNecromancy => m_ReqNecromancy;
|
||||
public double ReqSpiritSpeak => m_ReqSpiritSpeak;
|
||||
|
||||
public SummonFamiliarEntry( Type type, object name, double reqNecromancy, double reqSpiritSpeak )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue