Removes implicit types
This commit is contained in:
parent
33f5e77a24
commit
04b4cfe75b
261 changed files with 1329 additions and 1329 deletions
|
|
@ -11,7 +11,7 @@ namespace Server.Commands.Generic
|
|||
|
||||
public AreaCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Area", "Group" };
|
||||
Accessors = new[]{ "Area", "Group" };
|
||||
SupportRequirement = CommandSupport.Area;
|
||||
SupportsConditionals = true;
|
||||
AccessLevel = AccessLevel.GameMaster;
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public ContainedCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Contained" };
|
||||
Accessors = new[]{ "Contained" };
|
||||
SupportRequirement = CommandSupport.Contained;
|
||||
AccessLevel = AccessLevel.GameMaster;
|
||||
Usage = "Contained <command> [condition]";
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public FacetCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Facet" };
|
||||
Accessors = new[]{ "Facet" };
|
||||
SupportRequirement = CommandSupport.Area;
|
||||
SupportsConditionals = true;
|
||||
AccessLevel = AccessLevel.GameMaster;
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public GlobalCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Global" };
|
||||
Accessors = new[]{ "Global" };
|
||||
SupportRequirement = CommandSupport.Global;
|
||||
SupportsConditionals = true;
|
||||
AccessLevel = AccessLevel.Administrator;
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public IPAddressCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "IPAddress" };
|
||||
Accessors = new[]{ "IPAddress" };
|
||||
SupportRequirement = CommandSupport.IPAddress;
|
||||
SupportsConditionals = true;
|
||||
AccessLevel = AccessLevel.Administrator;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public MultiCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Multi", "m" };
|
||||
Accessors = new[]{ "Multi", "m" };
|
||||
SupportRequirement = CommandSupport.Multi;
|
||||
AccessLevel = AccessLevel.Counselor;
|
||||
Usage = "Multi <command>";
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public OnlineCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Online" };
|
||||
Accessors = new[]{ "Online" };
|
||||
SupportRequirement = CommandSupport.Online;
|
||||
SupportsConditionals = true;
|
||||
AccessLevel = AccessLevel.GameMaster;
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ namespace Server.Commands.Generic
|
|||
|
||||
public RangeCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Range" };
|
||||
Accessors = new[]{ "Range" };
|
||||
SupportRequirement = CommandSupport.Area;
|
||||
SupportsConditionals = true;
|
||||
AccessLevel = AccessLevel.GameMaster;
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public RegionCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Region" };
|
||||
Accessors = new[]{ "Region" };
|
||||
SupportRequirement = CommandSupport.Region;
|
||||
SupportsConditionals = true;
|
||||
AccessLevel = AccessLevel.GameMaster;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public ScreenCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Screen" };
|
||||
Accessors = new[]{ "Screen" };
|
||||
SupportRequirement = CommandSupport.Area;
|
||||
SupportsConditionals = true;
|
||||
AccessLevel = AccessLevel.GameMaster;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public SelfCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Self" };
|
||||
Accessors = new[]{ "Self" };
|
||||
SupportRequirement = CommandSupport.Self;
|
||||
AccessLevel = AccessLevel.Counselor;
|
||||
Usage = "Self <command>";
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public SerialCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Serial" };
|
||||
Accessors = new[]{ "Serial" };
|
||||
SupportRequirement = CommandSupport.Single;
|
||||
AccessLevel = AccessLevel.Counselor;
|
||||
Usage = "Serial <serial> <command>";
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ namespace Server.Commands.Generic
|
|||
{
|
||||
public SingleCommandImplementor()
|
||||
{
|
||||
Accessors = new string[]{ "Single" };
|
||||
Accessors = new[]{ "Single" };
|
||||
SupportRequirement = CommandSupport.Single;
|
||||
AccessLevel = AccessLevel.Counselor;
|
||||
Usage = "Single <command>";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue