From d75605027d439ec5857fd9aeb013afc1627b4adb Mon Sep 17 00:00:00 2001 From: Lucca Faria Ferri Date: Sun, 12 Feb 2023 19:42:17 -0800 Subject: [PATCH] Minor: Cleanup --- .../D3-GameServer/GSSystem/PowerSystem/ImplementsPowerBuff.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DiIiS-NA/D3-GameServer/GSSystem/PowerSystem/ImplementsPowerBuff.cs b/src/DiIiS-NA/D3-GameServer/GSSystem/PowerSystem/ImplementsPowerBuff.cs index c5a77a1..2c27475 100644 --- a/src/DiIiS-NA/D3-GameServer/GSSystem/PowerSystem/ImplementsPowerBuff.cs +++ b/src/DiIiS-NA/D3-GameServer/GSSystem/PowerSystem/ImplementsPowerBuff.cs @@ -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) {