Skip to content

Commit

Permalink
reverts suppressor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
challade committed Jul 21, 2024
1 parent 9d74e72 commit ec6a667
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion code/modules/projectiles/gun_attachables.dm
Original file line number Diff line number Diff line change
Expand Up @@ -260,16 +260,30 @@ Defined in conflicts.dm of the #defines folder.

/obj/item/attachable/suppressor/New()
..()
damage_falloff_mod = 0.1
accuracy_mod = HIT_ACCURACY_MULT_TIER_3
damage_mod = -BULLET_DAMAGE_MULT_TIER_1
recoil_mod = -RECOIL_AMOUNT_TIER_5
scatter_mod = -SCATTER_AMOUNT_TIER_10
attach_icon = pick("suppressor_a","suppressor2_a")

recoil_unwielded_mod = -RECOIL_AMOUNT_TIER_5
scatter_unwielded_mod = -SCATTER_AMOUNT_TIER_10
damage_falloff_mod = 0.4

/obj/item/attachable/suppressor/xm40_integral
name = "\improper XM40 integral suppressor"
icon_state = "m40sd_suppressor"
attach_icon = "m40sd_suppressor_a"

/obj/item/attachable/suppressor/xm40_integral/New()
..()
accuracy_mod = HIT_ACCURACY_MULT_TIER_3
damage_mod = -BULLET_DAMAGE_MULT_TIER_1
recoil_mod = -RECOIL_AMOUNT_TIER_5
scatter_mod = -SCATTER_AMOUNT_TIER_10
recoil_unwielded_mod = -RECOIL_AMOUNT_TIER_5
scatter_unwielded_mod = -SCATTER_AMOUNT_TIER_10
damage_falloff_mod = 0.1
attach_icon = "m40sd_suppressor_a"

/obj/item/attachable/bayonet
Expand Down

0 comments on commit ec6a667

Please sign in to comment.