fix: Cleans up spell info variable (#848)

This commit is contained in:
Kamron Batman 2021-11-14 18:31:32 -08:00 committed by GitHub
parent 91493f7f27
commit e5f55a424a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
120 changed files with 241 additions and 247 deletions

View file

@ -6,7 +6,7 @@ namespace Server.Spells.Necromancy
{
public class StrangleSpell : NecromancerSpell, ISpellTargetingMobile
{
private static readonly SpellInfo m_Info = new(
private static readonly SpellInfo _info = new(
"Strangle",
"In Bal Nox",
209,
@ -17,7 +17,7 @@ namespace Server.Spells.Necromancy
private static readonly Dictionary<Mobile, InternalTimer> m_Table = new();
public StrangleSpell(Mobile caster, Item scroll = null) : base(caster, scroll, m_Info)
public StrangleSpell(Mobile caster, Item scroll = null) : base(caster, scroll, _info)
{
}