Moves a bunch of cleaning messages to ballons + advmop sprites (#19028)

* Moves a bunch of cleaning messages to runechat + advmop sprites

* woopsies

* Missed one

---------

Co-authored-by: Tost <Tost>
This commit is contained in:
TheToaster98
2026-01-17 08:04:33 -08:00
committed by GitHub
co-authored by Tost <Tost>
parent 1d457a3170
commit b7319f1e24
6 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -64,7 +64,7 @@
else if(istype(target,/obj/effect/decal/cleanable))
user.visible_message("[user] begins to scrub \the [target] out with [src].", span_warning("You begin to scrub \the [target] out with [src]..."))
if(do_after(user, src.cleanspeed, target = target))
to_chat(user, span_notice("You scrub \the [target] out."))
user.balloon_alert(user, "you scrub \the [target] out.")
qdel(target)
else
if(istype(target,/turf))
@@ -76,7 +76,7 @@
return
user.visible_message("[user] begins to scrub \the [target] out with [src].", span_warning("You begin to scrub \the [target] out with [src]..."))
if(do_after(user, src.cleanspeed, target = target))
to_chat(user, span_notice("You scrub \the [target] clean."))
user.balloon_alert(user, "you scrub \the [target] clean.")
var/turf/T = target
T.wash(CLEAN_SCRUB)
reagents.trans_to_turf(T, 1, 10)
+2 -2
View File
@@ -26,7 +26,7 @@ GLOBAL_LIST_BOILERPLATE(all_mops, /obj/item/mop)
if(!proximity) return
if(istype(A, /turf) || istype(A, /obj/effect/decal/cleanable) || istype(A, /obj/effect/overlay) || istype(A, /obj/effect/rune))
if(reagents.total_volume < 1)
to_chat(user, span_notice("Your mop is dry!"))
user.balloon_alert(user, "your mop is dry!")
return
user.visible_message(span_warning("[user] begins to clean \the [get_turf(A)]."))
@@ -36,7 +36,7 @@ GLOBAL_LIST_BOILERPLATE(all_mops, /obj/item/mop)
if(T)
T.wash(CLEAN_SCRUB)
reagents.trans_to_turf(T, 1, 10)
to_chat(user, span_notice("You have finished mopping!"))
user.balloon_alert(user, "you have finished mopping!")
/obj/effect/attackby(obj/item/I, mob/user)