Changes up a lot more messages to look like emotes. (#9133)

This commit is contained in:
Matt Atlas
2020-06-18 10:29:47 +02:00
committed by GitHub
parent a00f2555ea
commit c6d9cba325
39 changed files with 132 additions and 96 deletions
@@ -205,9 +205,11 @@
else if(W.iswrench() && state == 0)
playsound(src.loc, W.usesound, 100, 1)
if(anchored)
user.visible_message("[user] begins unsecuring the airlock assembly from the floor.", "You starts unsecuring the airlock assembly from the floor.")
user.visible_message("<b>[user]</b> begins unsecuring the airlock assembly from the floor.", \
SPAN_NOTICE("You start unsecuring the airlock assembly from the floor."))
else
user.visible_message("[user] begins securing the airlock assembly to the floor.", "You starts securing the airlock assembly to the floor.")
user.visible_message("<b>[user]</b> begins securing the airlock assembly to the floor.", \
SPAN_NOTICE("You start securing the airlock assembly to the floor."))
if(do_after(user, 40/W.toolspeed))
if(!src) return
+4 -4
View File
@@ -467,8 +467,8 @@
return
RG.reagents.add_reagent("water", min(RG.volume - RG.reagents.total_volume, amount_per_transfer_from_this))
user.visible_message(span("notice", "[user] fills \the [RG] using \the [src]."),
span("notice", "You fill \the [RG] using \the [src]."))
user.visible_message("<b>[user]</b> fills \a [RG] using \the [src].",
SPAN_NOTICE("You fill \a [RG] using \the [src]."))
playsound(loc, 'sound/effects/sink.ogg', 75, 1)
if ("Empty")
if(!RG.reagents.total_volume)
@@ -476,8 +476,8 @@
return
var/empty_amount = RG.reagents.trans_to(src, RG.amount_per_transfer_from_this)
user.visible_message(span("notice", "[user] empties [empty_amount]u of \the [RG] into \the [src]."),
span("notice", "You empty [empty_amount]u of \the [RG] into \the [src]."))
var/max_reagents = RG.reagents.maximum_volume
user.visible_message("<b>[user]</b> empties [empty_amount == max_reagents ? "all of \the [RG]" : "some of \the [RG]"] into \a [src].")
playsound(src.loc, 'sound/effects/pour.ogg', 10, 1)
return
+1 -1
View File
@@ -193,7 +193,7 @@
"You hear a banging sound.")
else
playsound(src.loc, 'sound/effects/glass_knock.ogg', 60, 1)
user.visible_message("[user] knocks on \the [src.name].",
user.visible_message("<b>[user]</b> knocks on \the [src.name].",
"You knock on \the [src.name].",
"You hear a knocking sound.")
return