From aea846c76163a3c299bf8a6fe7b3233f775cae1d Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sun, 17 Jul 2022 17:22:43 -0400 Subject: [PATCH] you can no longer attack c4 to ghosts (#18418) --- code/game/objects/items/weapons/explosives.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/items/weapons/explosives.dm b/code/game/objects/items/weapons/explosives.dm index 58d6fa5ad8f..8913b38b262 100644 --- a/code/game/objects/items/weapons/explosives.dm +++ b/code/game/objects/items/weapons/explosives.dm @@ -72,6 +72,9 @@ if(iscarbon(AM)) to_chat(user, "You can't get the [src] to stick to [AM]!") return + if(isobserver(AM)) + to_chat(user, "Your hand just phases through [AM]!") + return to_chat(user, "You start planting [src]. The timer is set to [det_time]...") if(do_after(user, 50 * toolspeed, target = AM))