mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 20:17:15 +01:00
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:
co-authored by
Tost <Tost>
parent
1d457a3170
commit
b7319f1e24
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user