From b257cbdf6a26660def8cd5c4d7f22bc81d8c10d7 Mon Sep 17 00:00:00 2001 From: Nathanael Sensfelder Date: Mon, 18 Jun 2018 21:30:03 +0200 Subject: Possibly fixes negative number error, wrong range. But I apparently forgot a file in the last commit... --- src/shared/struct/sh_weapon.erl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/shared/struct') diff --git a/src/shared/struct/sh_weapon.erl b/src/shared/struct/sh_weapon.erl index 2cd3fda..d0293eb 100644 --- a/src/shared/struct/sh_weapon.erl +++ b/src/shared/struct/sh_weapon.erl @@ -411,7 +411,8 @@ apply_to_attributes (Weapon, Attributes) -> light -> (Speed - QuarterImpact) end, - S0Attributes = sh_attributes:set_speed(ResultingSpeed, Attributes), - S1Attributes = sh_attributes:set_dexterity(ResultingDexterity, S0Attributes), + S0Attributes = sh_attributes:set_unsafe_speed(ResultingSpeed, Attributes), + S1Attributes = + sh_attributes:set_unsafe_dexterity(ResultingDexterity, S0Attributes), S1Attributes. -- cgit v1.2.3-70-g09d2