Minor: Cleanup

This commit is contained in:
Lucca Faria Ferri 2023-02-12 19:42:17 -08:00
parent cbe44933bf
commit d75605027d

View File

@ -9,8 +9,8 @@ namespace DiIiS_NA.GameServer.GSSystem.PowerSystem
[AttributeUsage(AttributeTargets.Class)]
public class ImplementsPowerBuff : Attribute
{
public int BuffSlot;
public bool CountStacks;
public int BuffSlot { get; }
public bool CountStacks { get; }
public ImplementsPowerBuff(int buffSlot, bool countStacks = false)
{