Added 'hit chance' extra attack option can be applied to future special attacks ect.

This commit is contained in:
KayenEQ
2014-10-24 23:36:02 -04:00
parent 4cb6a5635e
commit 5afd6b8628
2 changed files with 11 additions and 3 deletions
+2 -1
View File
@@ -563,7 +563,7 @@ struct ExtraAttackOptions {
: damage_percent(1.0f), damage_flat(0),
armor_pen_percent(0.0f), armor_pen_flat(0),
crit_percent(1.0f), crit_flat(0.0f),
hate_percent(1.0f), hate_flat(0)
hate_percent(1.0f), hate_flat(0), hit_chance(0)
{ }
float damage_percent;
@@ -574,6 +574,7 @@ struct ExtraAttackOptions {
float crit_flat;
float hate_percent;
int hate_flat;
int hit_chance;
};
#endif