Fixes implicit array initializers
This commit is contained in:
parent
7d3a0ca265
commit
fee83ce560
189 changed files with 440 additions and 808 deletions
|
|
@ -1138,8 +1138,7 @@ namespace Server.Multis
|
|||
/* Stair block IDs
|
||||
* (sorted ascending)
|
||||
*/
|
||||
private static int[] m_BlockIDs = new[]
|
||||
{
|
||||
private static int[] m_BlockIDs = {
|
||||
0x3EE, 0x709, 0x71E, 0x721,
|
||||
0x738, 0x750, 0x76C, 0x788,
|
||||
0x7A3, 0x7BA, 0x35D2, 0x3609,
|
||||
|
|
@ -1150,8 +1149,7 @@ namespace Server.Multis
|
|||
* (sorted ascending)
|
||||
* Use this for stairs in the proper N,W,S,E sequence
|
||||
*/
|
||||
private static int[] m_StairSeqs = new[]
|
||||
{
|
||||
private static int[] m_StairSeqs = {
|
||||
0x3EF, 0x70A, 0x722, 0x739,
|
||||
0x751, 0x76D, 0x789, 0x7A4
|
||||
};
|
||||
|
|
@ -1160,8 +1158,7 @@ namespace Server.Multis
|
|||
* Listed in order: north, west, south, east
|
||||
* Use this for stairs not in the proper sequence
|
||||
*/
|
||||
private static int[] m_StairIDs = new[]
|
||||
{
|
||||
private static int[] m_StairIDs = {
|
||||
0x71F, 0x736, 0x737, 0x749,
|
||||
0x35D4, 0x35D3, 0x35D6, 0x35D5,
|
||||
0x360B, 0x360A, 0x360D, 0x360C,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue