mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 14:41:28 +00:00
[Bug Fix] Fix range_percent (#4197)
# Notes - This was uninitialized and was getting bogus values.
This commit is contained in:
parent
e32cbf19ee
commit
f5050ab5dc
@ -826,7 +826,8 @@ struct ExtraAttackOptions {
|
|||||||
armor_pen_percent(0.0f), armor_pen_flat(0),
|
armor_pen_percent(0.0f), armor_pen_flat(0),
|
||||||
crit_percent(1.0f), crit_flat(0.0f),
|
crit_percent(1.0f), crit_flat(0.0f),
|
||||||
hate_percent(1.0f), hate_flat(0), hit_chance(0),
|
hate_percent(1.0f), hate_flat(0), hit_chance(0),
|
||||||
melee_damage_bonus_flat(0), skilldmgtaken_bonus_flat(0)
|
melee_damage_bonus_flat(0), skilldmgtaken_bonus_flat(0),
|
||||||
|
range_percent(0)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
float damage_percent;
|
float damage_percent;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user