Converts visible_message notice spans to look more like emotes

This commit is contained in:
Chompstation Bot
2021-07-05 20:30:12 +00:00
parent b40f14fc6b
commit 14129d60cf
135 changed files with 2464 additions and 248 deletions

View File

@@ -121,7 +121,7 @@
if(L.stat == DEAD)
summoned_mobs -= L
spawn(1)
L.visible_message("<span class='notice'>\The [L] begins to fade away...</span>")
L.visible_message("<b>\The [L]</b> begins to fade away...")
animate(L, alpha = 255, alpha = 0, time = 30) // Makes them fade into nothingness.
sleep(30)
qdel(L)

View File

@@ -27,7 +27,7 @@
to_chat(L, "<span class='warning'>\The [user] tried to teleport you far away, but failed.</span>")
return 0
else
visible_message("<span class='notice'>\The [L] vanishes!</span>")
visible_message("<b>\The [L]</b> vanishes!")
qdel(L)
else if(istype(L, /mob/living/simple_mob/construct))
var/mob/living/simple_mob/construct/evil = L

View File

@@ -47,7 +47,7 @@
if(L.buckled)
L.buckled.unbuckle_mob()
AM.forceMove(destination)
AM.visible_message("<span class='notice'>\The [AM] vanishes!</span>")
AM.visible_message("<b>\The [AM]</b> vanishes!")
to_chat(AM, "<span class='notice'>You suddenly appear somewhere else!</span>")
new /obj/effect/effect/sparks(destination)
new /obj/effect/effect/sparks(starting)