From 33dff2756e0fc1f1bc454d2bd6dfa1dc1d27c509 Mon Sep 17 00:00:00 2001
From: Christer2222 <25958019+Christer2222@users.noreply.github.com>
Date: Thu, 25 Dec 2025 22:00:41 +0100
Subject: [PATCH] Adds a description to C4 and X4 showing you can set a timer
(#31308)
* description
* new description
---
code/game/objects/items/weapons/explosives.dm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/code/game/objects/items/weapons/explosives.dm b/code/game/objects/items/weapons/explosives.dm
index abe5ddfc472..c8c1fe95428 100644
--- a/code/game/objects/items/weapons/explosives.dm
+++ b/code/game/objects/items/weapons/explosives.dm
@@ -180,6 +180,10 @@
/// Will the explosion cause a breach. C4 placed on floors will always cause a breach, regardless of this value.
var/ex_breach = FALSE
+/obj/item/grenade/plastic/c4/Initialize(mapload)
+ . = ..()
+ desc += SPAN_NOTICE("
Use [src] in-hand to adjust the detonation timer.")
+
/obj/item/grenade/plastic/c4/afterattack__legacy__attackchain(atom/movable/AM, mob/user, flag)
aim_dir = get_dir(user, AM)
..()