From 8806d6d7a7a41c90e2eb82d4cadbe2e161f11425 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Sat, 20 Nov 2021 11:37:13 -0800 Subject: [PATCH] fix: Fixes compiling (#855) --- Projects/UOContent/Spells/Second/Protection.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/UOContent/Spells/Second/Protection.cs b/Projects/UOContent/Spells/Second/Protection.cs index cecab823d..7944e3015 100644 --- a/Projects/UOContent/Spells/Second/Protection.cs +++ b/Projects/UOContent/Spells/Second/Protection.cs @@ -85,8 +85,8 @@ namespace Server.Spells.Second _table[target] = Tuple.Create(physMod, resistMod); Registry[target] = 1000; // 100.0% protection from disruption - target.AddResistanceMod(physmod); - target.AddSkillMod(resistmod); + target.AddResistanceMod(physMod); + target.AddSkillMod(resistMod); var args = $"{physLoss}\t{resistLoss}"; BuffInfo.AddBuff(target, new BuffInfo(BuffIcon.Protection, 1075814, 1075815, args));