cleans up some of the old << in favor of to_chat (#11156)

This commit is contained in:
Kashargul
2025-07-08 21:25:03 +02:00
committed by GitHub
parent e77ace94bd
commit 5a04ab175d
11 changed files with 40 additions and 42 deletions

View File

@@ -219,14 +219,14 @@
var/mob/living/carbon/human/H = M
if(H == user)
if(icon_state == "scrap" && H.check_has_mouth()) //YW Edit Start
user << span_warning("You begin to stuff \the [src] into your mouth!")
to_chat(user, span_warning("You begin to stuff \the [src] into your mouth!"))
if(do_after(user, 30))
user << span_warning("You stuff \the [src] into your mouth!")
to_chat(user, span_warning("You stuff \the [src] into your mouth!"))
H.ingested.add_reagent("paper", 10)
H.adjustOxyLoss(10)
qdel(src)
else
user << span_notice("You wipe off the lipstick with [src].")
to_chat(user, span_notice("You wipe off the lipstick with [src]."))
H.lip_style = null
H.update_icons_body()
else