From 977cc47538f0101a6b886c776be4d829c092dd51 Mon Sep 17 00:00:00 2001 From: siegluck <110900393+siegluck@users.noreply.github.com> Date: Thu, 19 Dec 2024 14:55:49 +0300 Subject: [PATCH] =?UTF-8?q?=D0=91=D0=BE=D0=BB=D1=8C=D1=88=D0=B5=20=D0=BC?= =?UTF-8?q?=D0=BE=D0=B4=D1=83=D0=BB=D0=B5=D0=B9=20=D0=BD=D0=B0=20=D0=9D?= =?UTF-8?q?=D0=B8=D0=B3=D1=80=D0=B5=D0=B4=D0=BE=20(#842)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * max_range * attachable_allowed --- .../projectiles/ammo_datums/bullet/revolver.dm | 1 + code/modules/projectiles/guns/revolvers.dm | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/code/modules/projectiles/ammo_datums/bullet/revolver.dm b/code/modules/projectiles/ammo_datums/bullet/revolver.dm index a59c9acb178..aa2c858c6a0 100644 --- a/code/modules/projectiles/ammo_datums/bullet/revolver.dm +++ b/code/modules/projectiles/ammo_datums/bullet/revolver.dm @@ -27,6 +27,7 @@ handful_amount = 5 damage = 100 penetration = 40 + max_range = 25 additional_xeno_penetration = 0 /datum/ammo/bullet/revolver/t500/on_hit_mob(mob/M,obj/projectile/P) diff --git a/code/modules/projectiles/guns/revolvers.dm b/code/modules/projectiles/guns/revolvers.dm index 21f8e159fd2..372dd8eb19c 100644 --- a/code/modules/projectiles/guns/revolvers.dm +++ b/code/modules/projectiles/guns/revolvers.dm @@ -532,9 +532,20 @@ /obj/item/attachable/stock/t500stock, /obj/item/attachable/t500barrelshort, /obj/item/attachable/t500barrel, - /obj/item/attachable/lasersight, /obj/item/attachable/flashlight/under, /obj/item/attachable/lace/t500, + /obj/item/attachable/reddot, + /obj/item/attachable/verticalgrip, + /obj/item/attachable/angledgrip, + /obj/item/attachable/flashlight/under, + /obj/item/attachable/lasersight, + /obj/item/attachable/flashlight, + /obj/item/attachable/scope, + /obj/item/attachable/scope/marine, + /obj/item/attachable/scope/mini, + /obj/item/attachable/motiondetector, + /obj/item/attachable/buildasentry, + /obj/item/attachable/shoulder_mount, ) attachable_offset = list("muzzle_x" = 0, "muzzle_y" = 0,"rail_x" = 10, "rail_y" = 20, "under_x" = 19, "under_y" = 13, "stock_x" = -19, "stock_y" = 0) windup_delay = 0.8 SECONDS