Fixes implicit array initializers
This commit is contained in:
parent
7d3a0ca265
commit
fee83ce560
189 changed files with 440 additions and 808 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 ),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue