From cf5c62d06cd18c9945e71bd4e81fda43af356e8d Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Thu, 4 Oct 2018 01:52:57 -0400 Subject: [PATCH] fixes hitscan increments not using the multiplier --- code/datums/position_point_vector.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/position_point_vector.dm b/code/datums/position_point_vector.dm index 7d49db84296..a33d0d22252 100644 --- a/code/datums/position_point_vector.dm +++ b/code/datums/position_point_vector.dm @@ -186,8 +186,8 @@ /datum/point/vector/proc/increment(multiplier = 1) iteration++ - x += mpx * 1 - y += mpy * 1 + x += mpx * (multiplier) + y += mpy * (multiplier) /datum/point/vector/proc/return_vector_after_increments(amount = 7, multiplier = 1, force_simulate = FALSE) var/datum/point/vector/v = copy_to()