removed some "\" and "\red"

This commit is contained in:
DeityLink
2014-11-03 10:52:50 +01:00
parent 0984888293
commit 18fb890e33
2 changed files with 9 additions and 16 deletions

View File

@@ -353,13 +353,6 @@ var/engwords = list("travel", "blood", "join", "hell", "destroy", "technology",
else else
M.LAssailant = user M.LAssailant = user
if(isobserver(M))
if(M.invisibility != 0)
M.invisibility = 0
user.visible_message( \
"<span class='warning'>[user] drags the ghost to our plan of reality!</span>", \
"<span class='warning'>You drag the ghost to our plan of reality!</span>" \
)
return return
if(!istype(M)) if(!istype(M))
return return

View File

@@ -110,23 +110,23 @@
var/mob/dead/M = src var/mob/dead/M = src
if(src.invisibility != 0) if(src.invisibility != 0)
M.invisibility = 0 M.invisibility = 0
user.visible_message( \ user.visible_message(
"\red [user] drags ghost, [M], to our plan of reality!", \ "<span class='warning'>[user] drags ghost, [M], to our plan of reality!</span>",
"\red You drag [M] to our plan of reality!" \ "<span class='warning'>You drag [M] to our plan of reality!</span>"
) )
else else
user.visible_message ( \ user.visible_message (
"\red [user] just tried to smash his book into that ghost! It's not very effective", \ "<span class='warning'>[user] just tried to smash his book into that ghost! It's not very effective</span>",
"\red You get the feeling that the ghost can't become any more visible." \ "<span class='warning'>You get the feeling that the ghost can't become any more visible.</span>"
) )
if(istype(W,/obj/item/weapon/storage/bible) || istype(W,/obj/item/weapon/nullrod)) if(istype(W,/obj/item/weapon/storage/bible) || istype(W,/obj/item/weapon/nullrod))
var/mob/dead/M = src var/mob/dead/M = src
if(src.invisibility == 0) if(src.invisibility == 0)
M.invisibility = 60 M.invisibility = 60
user.visible_message( \ user.visible_message(
"<span class='warning'>[user] banishes the ghost from our plan of reality!</span>", \ "<span class='warning'>[user] banishes the ghost from our plan of reality!</span>",
"<span class='warning'>You banish the ghost from our plan of reality!</span>" \ "<span class='warning'>You banish the ghost from our plan of reality!</span>"
) )
/mob/dead/observer/get_multitool(var/active_only=0) /mob/dead/observer/get_multitool(var/active_only=0)