From b115e49658e530c78205f1055e6360ea3f2ba701 Mon Sep 17 00:00:00 2001 From: Theos Date: Tue, 4 Jun 2024 00:42:43 -0400 Subject: [PATCH] Fix shadow AP bonus (#3065) ## About The Pull Request This was being applied to the casing ## Why It's Good For The Game I know the brass is hot but i think the burning does better in the bullet ## Changelog :cl: fix: The shadow's gunslinger buff now properly provides an AP bonus /:cl: Signed-off-by: Theos --- code/modules/projectiles/guns/ballistic/revolver.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/guns/ballistic/revolver.dm b/code/modules/projectiles/guns/ballistic/revolver.dm index 73ac18d7af00..27c3d124906a 100644 --- a/code/modules/projectiles/guns/ballistic/revolver.dm +++ b/code/modules/projectiles/guns/ballistic/revolver.dm @@ -727,4 +727,4 @@ EMPTY_GUN_HELPER(revolver/detective) // if you go through the pain of not only using this shitty gun, but also with the fucking gunslinger quirk, you deserve this bonus. not a BIG bonus, but enough as an incentive to make people actually take the quirk. if(chambered.BB && (HAS_TRAIT(user, TRAIT_GUNSLINGER))) chambered.BB.damage += 5 - chambered.armour_penetration += 5 + chambered.BB.armour_penetration += 5