diff --git a/code/game/objects/items/devices/denecrotizer_vr.dm b/code/game/objects/items/devices/denecrotizer_vr.dm
index e25dc145317..164e0693984 100644
--- a/code/game/objects/items/devices/denecrotizer_vr.dm
+++ b/code/game/objects/items/devices/denecrotizer_vr.dm
@@ -44,7 +44,7 @@
if(!ghostjoin)
return ..()
if(jobban_isbanned(user, "GhostRoles"))
- to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.")
+ to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.")
return
if(!evaluate_ghost_join(user))
return ..()
diff --git a/code/game/objects/structures/ghost_pods/event_vr.dm b/code/game/objects/structures/ghost_pods/event_vr.dm
index c566f95e763..5a7f7fa6baa 100644
--- a/code/game/objects/structures/ghost_pods/event_vr.dm
+++ b/code/game/objects/structures/ghost_pods/event_vr.dm
@@ -52,7 +52,7 @@
while(finalized == "No" && M.client)
if(jobban_isbanned(M, "GhostRoles"))
- to_chat(M, "You cannot inhabit this creature because you are banned from playing ghost roles.")
+ to_chat(M, "You cannot inhabit this creature because you are banned from playing ghost roles.")
return
choice = tgui_input_list(M, "What type of predator do you want to play as?", "Maintpred Choice", possible_mobs)
if(!choice)
diff --git a/code/game/objects/structures/ghost_pods/ghost_pods.dm b/code/game/objects/structures/ghost_pods/ghost_pods.dm
index 8197e958a87..f09522ddb81 100644
--- a/code/game/objects/structures/ghost_pods/ghost_pods.dm
+++ b/code/game/objects/structures/ghost_pods/ghost_pods.dm
@@ -86,7 +86,7 @@
/obj/structure/ghost_pod/ghost_activated/attack_ghost(var/mob/observer/dead/user)
//VOREStation Add Start
if(jobban_isbanned(user, "GhostRoles"))
- to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.")
+ to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.")
return
//VOREStation Add End
if(used)
diff --git a/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm b/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm
index be189d37edf..0297346c57e 100644
--- a/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm
+++ b/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm
@@ -12,7 +12,7 @@
/obj/structure/ghost_pod/manual/attack_ghost(var/mob/observer/dead/user)
if(jobban_isbanned(user, "GhostRoles"))
- to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.")
+ to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.")
return
if(!remains_active || busy)
diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm
index 1752b1ca3c1..2d991e72904 100644
--- a/code/modules/mob/dead/observer/observer.dm
+++ b/code/modules/mob/dead/observer/observer.dm
@@ -640,7 +640,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
//VOREStation Add Start
if(jobban_isbanned(src, "GhostRoles"))
- to_chat(src, "You cannot become a mouse because you are banned from playing ghost roles.")
+ to_chat(src, "You cannot become a mouse because you are banned from playing ghost roles.")
return
//VOREStation Add End