Removes implicit types
This commit is contained in:
parent
33f5e77a24
commit
04b4cfe75b
261 changed files with 1329 additions and 1329 deletions
|
|
@ -128,7 +128,7 @@ namespace Server.Misc
|
|||
}
|
||||
}
|
||||
|
||||
public static string[] HarrowerTitles = new string[] { "Spite", "Opponent", "Hunter", "Venom", "Executioner", "Annihilator", "Champion", "Assailant", "Purifier", "Nullifier" };
|
||||
public static string[] HarrowerTitles = new[] { "Spite", "Opponent", "Hunter", "Venom", "Executioner", "Annihilator", "Champion", "Assailant", "Purifier", "Nullifier" };
|
||||
|
||||
public static string ComputeTitle( Mobile beholder, Mobile beheld )
|
||||
{
|
||||
|
|
@ -264,7 +264,7 @@ namespace Server.Misc
|
|||
return highest;
|
||||
}
|
||||
|
||||
private static string[,] m_Levels = new string[,]
|
||||
private static string[,] m_Levels = new[,]
|
||||
{
|
||||
{ "Neophyte", "Neophyte", "Neophyte" },
|
||||
{ "Novice", "Novice", "Novice" },
|
||||
|
|
@ -300,9 +300,9 @@ namespace Server.Misc
|
|||
return (fp - 300) / 100;
|
||||
}
|
||||
|
||||
private static FameEntry[] m_FameEntries = new FameEntry[]
|
||||
private static FameEntry[] m_FameEntries = new[]
|
||||
{
|
||||
new FameEntry( 1249, new KarmaEntry[]
|
||||
new FameEntry( 1249, new[]
|
||||
{
|
||||
new KarmaEntry( -10000, "The Outcast {0}" ),
|
||||
new KarmaEntry( -5000, "The Despicable {0}" ),
|
||||
|
|
@ -316,7 +316,7 @@ namespace Server.Misc
|
|||
new KarmaEntry( 9999, "The Honest {0}" ),
|
||||
new KarmaEntry( 10000, "The Trustworthy {0}" )
|
||||
} ),
|
||||
new FameEntry( 2499, new KarmaEntry[]
|
||||
new FameEntry( 2499, new[]
|
||||
{
|
||||
new KarmaEntry( -10000, "The Wretched {0}" ),
|
||||
new KarmaEntry( -5000, "The Dastardly {0}" ),
|
||||
|
|
@ -330,7 +330,7 @@ namespace Server.Misc
|
|||
new KarmaEntry( 9999, "The Commendable {0}" ),
|
||||
new KarmaEntry( 10000, "The Estimable {0}" )
|
||||
} ),
|
||||
new FameEntry( 4999, new KarmaEntry[]
|
||||
new FameEntry( 4999, new[]
|
||||
{
|
||||
new KarmaEntry( -10000, "The Nefarious {0}" ),
|
||||
new KarmaEntry( -5000, "The Wicked {0}" ),
|
||||
|
|
@ -344,7 +344,7 @@ namespace Server.Misc
|
|||
new KarmaEntry( 9999, "The Famed {0}" ),
|
||||
new KarmaEntry( 10000, "The Great {0}" )
|
||||
} ),
|
||||
new FameEntry( 9999, new KarmaEntry[]
|
||||
new FameEntry( 9999, new[]
|
||||
{
|
||||
new KarmaEntry( -10000, "The Dread {0}" ),
|
||||
new KarmaEntry( -5000, "The Evil {0}" ),
|
||||
|
|
@ -358,7 +358,7 @@ namespace Server.Misc
|
|||
new KarmaEntry( 9999, "The Illustrious {0}" ),
|
||||
new KarmaEntry( 10000, "The Glorious {0}" )
|
||||
} ),
|
||||
new FameEntry( 10000, new KarmaEntry[]
|
||||
new FameEntry( 10000, new[]
|
||||
{
|
||||
new KarmaEntry( -10000, "The Dread {1} {0}" ),
|
||||
new KarmaEntry( -5000, "The Evil {1} {0}" ),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue