diff --git a/code/game/objects/items/weapons/storage/bible.dm b/code/game/objects/items/weapons/storage/bible.dm
index 57adc2bc544..dfa1bf97358 100644
--- a/code/game/objects/items/weapons/storage/bible.dm
+++ b/code/game/objects/items/weapons/storage/bible.dm
@@ -10,7 +10,7 @@
var/deity_name = "Christ"
/obj/item/storage/bible/suicide_act(mob/user)
- to_chat(viewers(user), "[user] stares into [src.name] and attempts to trascend understanding of the universe!")
+ to_chat(viewers(user), "[user] stares into [src.name] and attempts to transcend understanding of the universe!")
user.dust()
return OBLITERATION
diff --git a/code/game/objects/objs.dm b/code/game/objects/objs.dm
index d47dff32bf4..6506a5fdf2e 100644
--- a/code/game/objects/objs.dm
+++ b/code/game/objects/objs.dm
@@ -83,6 +83,9 @@
//FIRELOSS = 2
//TOXLOSS = 4
//OXYLOSS = 8
+//SHAME = 16
+//OBLITERATION = 32
+
//Output a creative message and then return the damagetype done
/obj/proc/suicide_act(mob/user)
return FALSE
diff --git a/code/game/verbs/suicide.dm b/code/game/verbs/suicide.dm
index ab7db89dda8..4fd7a2a77d7 100644
--- a/code/game/verbs/suicide.dm
+++ b/code/game/verbs/suicide.dm
@@ -55,8 +55,6 @@
be_suicidal()
/mob/living/carbon/human/proc/be_suicidal(forced = FALSE)
- set hidden = 1
-
if(stat == DEAD)
to_chat(src, "You're already dead!")
return