This commit is contained in:
asayre 2006-07-16 19:49:58 +00:00
parent a9c90da627
commit 8150706a3c
31 changed files with 145 additions and 2716 deletions

View file

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