From 2d8acaf150fa6e41affb17000e167fa5c464c348 Mon Sep 17 00:00:00 2001 From: bearrrrrrrrr Date: Wed, 31 Jan 2024 05:32:54 -0500 Subject: [PATCH] all good things must come to an end; M4RA nerf --- code/datums/ammo/bullet/rifle.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/datums/ammo/bullet/rifle.dm b/code/datums/ammo/bullet/rifle.dm index 4098235ba8..46b655a428 100644 --- a/code/datums/ammo/bullet/rifle.dm +++ b/code/datums/ammo/bullet/rifle.dm @@ -191,8 +191,7 @@ name = "depleted uranium bullet" damage = 60 - penetration = ARMOR_PENETRATION_TIER_10 - var/acid_per_hit = 15 //woe, toxin upon ye + penetration = ARMOR_PENETRATION_TIER_5 /datum/ammo/bullet/rifle/m4ra/du/set_bullet_traits() . = ..() @@ -201,7 +200,7 @@ )) /datum/ammo/bullet/rifle/m4ra/du/on_hit_mob(mob/target, obj/projectile/fired_proj) - target.AddComponent(/datum/component/toxic_buildup, acid_per_hit) + target.AddComponent(/datum/component/toxic_buildup) knockback(target, fired_proj, max_range = 2)