cleans up some span mishaps (#25106)

This commit is contained in:
Luc
2024-04-19 14:19:51 +00:00
committed by GitHub
parent 0541588e82
commit 8500df223d
9 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -208,7 +208,7 @@
message_param = "tries to point at %t with a leg."
else
// nugget
message_param = "<span class='userdanger>bumps [user.p_their()] head on the ground</span> trying to motion towards %t."
message_param = "<span class='userdanger'>bumps [user.p_their()] head on the ground</span> trying to motion towards %t."
return ..()
@@ -3,7 +3,7 @@
if(!cleanWipe)
force_fold_out()
visible_message("<span class=warning>[src] emits a dull beep before it loses power and collapses.</span>", "<span class=warning>You hear a dull beep followed by the sound of glass crunching.</span>")
visible_message("<span class='warning'>[src] emits a dull beep before it loses power and collapses.</span>", "<span class='warning'>You hear a dull beep followed by the sound of glass crunching.</span>")
name = "pAI debris"
desc = "The unfortunate remains of some poor personal AI device."
icon_state = "[chassis]_dead"
@@ -11,13 +11,13 @@
if(owner.layer != layer_to_change_to)
owner.layer = layer_to_change_to
owner.visible_message("<span class=notice'><b>[owner] scurries to the ground!</b></span>", "<span class=notice'>You are now hiding.</span>")
owner.visible_message("<span class='notice'><b>[owner] scurries to the ground!</b></span>", "<span class='notice'>You are now hiding.</span>")
if(istype(simplemob) && simplemob.pass_door_while_hidden || isdrone(simplemob))
simplemob.pass_flags |= PASSDOOR
return
simplemob.layer = layer_to_change_from
owner.visible_message("<span class=notice'>[owner] slowly peeks up from the ground...</span>", "<span class=notice'>You have stopped hiding.</span>")
owner.visible_message("<span class='notice'>[owner] slowly peeks up from the ground...</span>", "<span class='notice'>You have stopped hiding.</span>")
if(istype(simplemob) && simplemob.pass_door_while_hidden || isdrone(simplemob))
simplemob.pass_flags &= ~PASSDOOR