From c5d2a58917d324221aa06d79edac3761759c557f Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Sun, 28 Aug 2022 06:19:49 -0700 Subject: [PATCH] fix: Fixes the number of rounds for Strangle (#1151) --- Projects/UOContent/Spells/Necromancy/Strangle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/UOContent/Spells/Necromancy/Strangle.cs b/Projects/UOContent/Spells/Necromancy/Strangle.cs index 80a622fcc..129f4a5f1 100644 --- a/Projects/UOContent/Spells/Necromancy/Strangle.cs +++ b/Projects/UOContent/Spells/Necromancy/Strangle.cs @@ -70,7 +70,7 @@ namespace Server.Spells.Necromancy } // Calculations for the buff bar - var spiritlevel = Math.Min(4, Caster.Skills.SpiritSpeak.Value / 10); + var spiritlevel = Math.Max(4, Caster.Skills.SpiritSpeak.Value / 10); const int minDamage = 4; var maxDamage = ((int)spiritlevel + 1) * 3;