fix: name

This commit is contained in:
Adam Whitehurst 2021-05-30 12:56:26 -07:00
parent 6b1351bdc3
commit 66cf4ab74c

View File

@ -211,8 +211,8 @@ impl<'a> System<'a> for Sys {
BuffEffect::MovementSpeed(ms) => {
stat.move_speed_modifier *= *ms;
},
BuffEffect::AttackSpeed(ms) => {
stat.attack_speed_modifier *= *ms;
BuffEffect::AttackSpeed(val) => {
stat.attack_speed_modifier *= *val;
},
};
}