Fixes implicit array initializers

This commit is contained in:
Kamron Batman 2018-09-14 13:14:20 -07:00
parent 7d3a0ca265
commit fee83ce560
189 changed files with 440 additions and 808 deletions

View file

@ -135,16 +135,14 @@ namespace Server.Spells.Fifth
return ( t != null );
}
private static int[] m_HairIDs = new[]
{
private static int[] m_HairIDs = {
0x2044, 0x2045, 0x2046,
0x203C, 0x203B, 0x203D,
0x2047, 0x2048, 0x2049,
0x204A, 0x0000
};
private static int[] m_BeardIDs = new[]
{
private static int[] m_BeardIDs = {
0x203E, 0x203F, 0x2040,
0x2041, 0x204B, 0x204C,
0x204D, 0x0000

View file

@ -22,8 +22,7 @@ namespace Server.Spells.Fifth
// NOTE: Creature list based on 1hr of summon/release on OSI.
private static Type[] m_Types = new[]
{
private static Type[] m_Types = {
typeof( PolarBear ),
typeof( GrizzlyBear ),
typeof( BlackBear ),