diff --git a/code/modules/projectiles/guns/misc/blastcannon.dm b/code/modules/projectiles/guns/misc/blastcannon.dm
index 29bf2475cdd..f5e8a7381e8 100644
--- a/code/modules/projectiles/guns/misc/blastcannon.dm
+++ b/code/modules/projectiles/guns/misc/blastcannon.dm
@@ -4,8 +4,8 @@
* It's basically an immovable rod launcher.
*/
/obj/item/gun/blastcannon
- name = "pipe gun"
- desc = "A pipe welded onto a gun stock, with a mechanical trigger. The pipe has an opening near the top, and there seems to be a spring loaded wheel in the hole. Small enough to stow in a bag."
+ name = "blast cannon"
+ desc = "A makeshift device used to concentrate a bomb's blast energy to a narrow wave. Small enough to stow in a bag."
icon_state = "empty_blastcannon"
inhand_icon_state = "blastcannon_empty"
w_class = WEIGHT_CLASS_NORMAL
@@ -39,6 +39,11 @@
debug_power = 80
bombcheck = FALSE
+/obj/item/gun/blastcannon/examine(mob/user)
+ . = ..()
+ if(bomb)
+ . += "A bomb is loaded inside."
+
/obj/item/gun/blastcannon/Initialize()
. = ..()
if(!pin)
@@ -55,8 +60,6 @@
user.put_in_hands(bomb)
user.visible_message("[user] detaches [bomb] from [src].")
bomb = null
- name = initial(name)
- desc = initial(desc)
update_icon()
return ..()
@@ -77,8 +80,6 @@
user.visible_message("[user] attaches [bomb_to_attach] to [src]!")
bomb = bomb_to_attach
- name = "blast cannon"
- desc = "A makeshift device used to concentrate a bomb's blast energy to a narrow wave."
update_icon()
return TRUE