fix: Fixes the number of rounds for Strangle (#1151)
This commit is contained in:
parent
1a44d824d9
commit
c5d2a58917
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue