fix: Fixes the number of rounds for Strangle (#1151)

This commit is contained in:
Kamron Batman 2022-08-28 06:19:49 -07:00 committed by GitHub
parent 1a44d824d9
commit c5d2a58917
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,7 +70,7 @@ namespace Server.Spells.Necromancy
} }
// Calculations for the buff bar // 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; const int minDamage = 4;
var maxDamage = ((int)spiritlevel + 1) * 3; var maxDamage = ((int)spiritlevel + 1) * 3;