diff --git a/code/modules/mob/dead/observer/verbs.dm b/code/modules/mob/dead/observer/verbs.dm
index f597775a415..d9d3b6a9925 100644
--- a/code/modules/mob/dead/observer/verbs.dm
+++ b/code/modules/mob/dead/observer/verbs.dm
@@ -522,9 +522,6 @@
/mob/dead/observer/verb/become_hobo()
set name = "Become Space Hobo"
set category = "Ghost"
- if(!(mind && mind.current && can_reenter_corpse) || (mind.current.key && copytext(mind.current.key,1,2)!="@"))
- to_chat(src, "You must have had presence on this plane to become this.")
- return
if(!config.respawn_as_hobo)
to_chat(src, "Respawning as Space Hobo is disabled.")
return
@@ -537,6 +534,9 @@
if(hoboamount == hobostart.len)
to_chat(src, "The world has enough of these as is.")
return
+ if(!world.has_round_started())
+ to_chat(src, "The game has not started yet.")
+ return
var/response = alert(src, "Are you -sure- you want to become a space hobo?","Are you sure you want to ramble?","Yeah!","Nope!")
if(response != "Yeah!")