[MIRROR] Fixes two visible messages with incorrect args (#3048)

* Fixes two visible messages with incorrect args (#56596)

* Fixes two visible messages with incorrect args

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
This commit is contained in:
SkyratBot
2021-02-03 22:37:09 +00:00
committed by GitHub
co-authored by MrMelbert
parent b13537867f
commit e6de9712e8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -196,7 +196,7 @@
rider.Paralyze(1 SECONDS)
rider.Knockdown(4 SECONDS)
human_parent.visible_message("<span class='danger'>[rider] topples off of [human_parent] as they both fall to the ground!</span>", \
"<span class='warning'>You fall to the ground, bringing [rider] with you!</span>", COMBAT_MESSAGE_RANGE ,ignored_mobs=rider)
"<span class='warning'>You fall to the ground, bringing [rider] with you!</span>", "<span class='hear'>You hear two consecutive thuds.</span>", COMBAT_MESSAGE_RANGE, ignored_mobs=rider)
to_chat(rider, "<span class='danger'>[human_parent] falls to the ground, bringing you with [human_parent.p_them()]!</span>")
/datum/component/riding/creature/human/handle_vehicle_layer(dir)
+1 -1
View File
@@ -297,7 +297,7 @@
victim.visible_message("<span class='danger'>[user] finishes resetting [victim.p_their()] [limb.name]!</span>", "<span class='userdanger'>You reset your [limb.name]!</span>")
else
limb.receive_damage(brute=10, wound_bonus=CANT_WOUND)
user.visible_message("<span class='danger'>[user] finishes resetting [victim]'s [limb.name]!</span>", "<span class='nicegreen'>You finish resetting [victim]'s [limb.name]!</span>", victim)
user.visible_message("<span class='danger'>[user] finishes resetting [victim]'s [limb.name]!</span>", "<span class='nicegreen'>You finish resetting [victim]'s [limb.name]!</span>", ignored_mobs=victim)
to_chat(victim, "<span class='userdanger'>[user] resets your [limb.name]!</span>")
victim.emote("scream")