From 068a9658b8d1e1894aee68235e9faf40f9370557 Mon Sep 17 00:00:00 2001
From: Taurtura <141481662+Taurtura@users.noreply.github.com>
Date: Sun, 23 Jun 2024 00:43:14 +0200
Subject: [PATCH] Kinetic crusher description fix (#25909)
* fixes abductor toolset and surgical implants
* no more visual overload
* DGamer's review + fix contraction
---
code/modules/mining/equipment/kinetic_crusher.dm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/code/modules/mining/equipment/kinetic_crusher.dm b/code/modules/mining/equipment/kinetic_crusher.dm
index d22d7752df8..3778aac3286 100644
--- a/code/modules/mining/equipment/kinetic_crusher.dm
+++ b/code/modules/mining/equipment/kinetic_crusher.dm
@@ -47,10 +47,11 @@
. = ..()
. += "Mark a large creature with the destabilizing force, then hit them in melee to do [force + detonation_damage] damage."
. += "Does [force + detonation_damage + backstab_bonus] damage if the target is backstabbed, instead of [force + detonation_damage]."
+ if(length(trophies))
+ . += "You can use a crowbar on it to remove its attached trophies."
for(var/t in trophies)
var/obj/item/crusher_trophy/T = t
. += "It has \a [T] attached, which causes [T.effect_desc()]."
- . += "You can use a crowbar on it to remove it's attached trophies."
/obj/item/kinetic_crusher/attackby(obj/item/I, mob/living/user)
if(istype(I, /obj/item/crusher_trophy))