Adds style cop (#109)

This commit is contained in:
Kamron Batman 2020-04-26 00:16:02 -07:00 committed by GitHub
parent 3e715bcb60
commit 556a17aba8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1725 changed files with 33831 additions and 38046 deletions

View file

@ -1,19 +1,19 @@
using Server.Utilities;
using System;
using System.Collections.Generic;
using Server.Utilities;
namespace Server.Spells
{
public class SpellRegistry
{
private static Type[] m_Types = new Type[700];
private static readonly Type[] m_Types = new Type[700];
private static int m_Count;
private static Dictionary<Type, int> m_IDsFromTypes = new Dictionary<Type, int>(m_Types.Length);
private static readonly Dictionary<Type, int> m_IDsFromTypes = new Dictionary<Type, int>(m_Types.Length);
private static object[] m_Params = new object[2];
private static readonly object[] m_Params = new object[2];
private static string[] m_CircleNames =
private static readonly string[] m_CircleNames =
{
"First",
"Second",
@ -39,7 +39,7 @@ namespace Server.Spells
}
}
//What IS this used for anyways.
// What IS this used for anyways.
public static int Count
{
get
@ -57,7 +57,7 @@ namespace Server.Spells
}
}
public static Dictionary<int, SpecialMove> SpecialMoves{ get; } = new Dictionary<int, SpecialMove>();
public static Dictionary<int, SpecialMove> SpecialMoves { get; } = new Dictionary<int, SpecialMove>();
public static int GetRegistryNumber(ISpell s) => GetRegistryNumber(s.GetType());