diff --git a/code/game/gamemodes/cult/ritual.dm b/code/game/gamemodes/cult/ritual.dm
index 3e11ad3df1c..bd00ca874a3 100644
--- a/code/game/gamemodes/cult/ritual.dm
+++ b/code/game/gamemodes/cult/ritual.dm
@@ -353,13 +353,6 @@ var/engwords = list("travel", "blood", "join", "hell", "destroy", "technology",
else
M.LAssailant = user
- if(isobserver(M))
- if(M.invisibility != 0)
- M.invisibility = 0
- user.visible_message( \
- "[user] drags the ghost to our plan of reality!", \
- "You drag the ghost to our plan of reality!" \
- )
return
if(!istype(M))
return
diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm
index 62de0a58b73..1dc969c889a 100644
--- a/code/modules/mob/dead/observer/observer.dm
+++ b/code/modules/mob/dead/observer/observer.dm
@@ -110,23 +110,23 @@
var/mob/dead/M = src
if(src.invisibility != 0)
M.invisibility = 0
- user.visible_message( \
- "\red [user] drags ghost, [M], to our plan of reality!", \
- "\red You drag [M] to our plan of reality!" \
+ user.visible_message(
+ "[user] drags ghost, [M], to our plan of reality!",
+ "You drag [M] to our plan of reality!"
)
else
- user.visible_message ( \
- "\red [user] just tried to smash his book into that ghost! It's not very effective", \
- "\red You get the feeling that the ghost can't become any more visible." \
+ user.visible_message (
+ "[user] just tried to smash his book into that ghost! It's not very effective",
+ "You get the feeling that the ghost can't become any more visible."
)
if(istype(W,/obj/item/weapon/storage/bible) || istype(W,/obj/item/weapon/nullrod))
var/mob/dead/M = src
if(src.invisibility == 0)
M.invisibility = 60
- user.visible_message( \
- "[user] banishes the ghost from our plan of reality!", \
- "You banish the ghost from our plan of reality!" \
+ user.visible_message(
+ "[user] banishes the ghost from our plan of reality!",
+ "You banish the ghost from our plan of reality!"
)
/mob/dead/observer/get_multitool(var/active_only=0)