This commit is contained in:
parent
a9c90da627
commit
8150706a3c
31 changed files with 145 additions and 2716 deletions
|
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
|
|
@ -124,9 +125,9 @@ namespace Server.Factions
|
|||
}
|
||||
}
|
||||
|
||||
private static MonolithCollection m_Monoliths = new MonolithCollection();
|
||||
private static List<BaseMonolith> m_Monoliths = new List<BaseMonolith>();
|
||||
|
||||
public static MonolithCollection Monoliths
|
||||
public static List<BaseMonolith> Monoliths
|
||||
{
|
||||
get{ return m_Monoliths; }
|
||||
set{ m_Monoliths = value; }
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ using Server;
|
|||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Network;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
|
|
@ -463,8 +464,8 @@ namespace Server.Factions
|
|||
base.Delete();
|
||||
}
|
||||
|
||||
private static SigilCollection m_Sigils = new SigilCollection();
|
||||
private static List<Sigil> m_Sigils = new List<Sigil>();
|
||||
|
||||
public static SigilCollection Sigils{ get{ return m_Sigils; } }
|
||||
public static List<Sigil> Sigils{ get{ return m_Sigils; } }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue