From 2c997dd1c2ee1b2c310fdbdb78946ca5e848845c Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 18 Jul 2023 22:56:33 +0200 Subject: [PATCH] [MIRROR] [GBP: NO UPDATE] Reduces the sniper scope range to something that allows smoother aiming [MDB IGNORE] (#22561) * [GBP: NO UPDATE] Reduces the sniper scope range to something that allows smoother aiming (#76882) ## About The Pull Request Tragically this distance causes massive mouse move latency. The new value is still decently long and smoother to aim. ## Why It's Good For The Game I think it would be nice if people told me that shit is unusable from time to time. ## Changelog :cl: fix: Sniper rifles have a range that allows them to aim more smoothly (and still decently long ranged) /:cl: * [GBP: NO UPDATE] Reduces the sniper scope range to something that allows smoother aiming --------- Co-authored-by: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Co-authored-by: Bloop --- code/modules/projectiles/guns/ballistic/rifle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/guns/ballistic/rifle.dm b/code/modules/projectiles/guns/ballistic/rifle.dm index 95f4f069018..28e5e7dc1d4 100644 --- a/code/modules/projectiles/guns/ballistic/rifle.dm +++ b/code/modules/projectiles/guns/ballistic/rifle.dm @@ -276,7 +276,7 @@ /obj/item/gun/ballistic/rifle/sniper_rifle/Initialize(mapload) . = ..() - AddComponent(/datum/component/scope, range_modifier = 7) //enough range to at least make extremely good use of the penetrator rounds + AddComponent(/datum/component/scope, range_modifier = 4) //enough range to at least make extremely good use of the penetrator rounds /obj/item/gun/ballistic/rifle/sniper_rifle/reset_semicd() . = ..()