mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
finish up the spans (#9605)
This commit is contained in:
@@ -264,13 +264,13 @@
|
||||
|
||||
/turf/simulated/floor/outdoors/snow/thor/planetuse/attackby(var/obj/item/W, var/mob/user)
|
||||
if(istype(W, /obj/item/shovel))
|
||||
to_chat(user, "<span class='notice'>You begin to remove \the [src] with your [W].</span>")
|
||||
to_chat(user, span_notice("You begin to remove \the [src] with your [W]."))
|
||||
if(do_after(user, 4 SECONDS * W.toolspeed))
|
||||
to_chat(user, "<span class='notice'>\The [src] has been dug up, and now lies in a pile nearby.</span>")
|
||||
to_chat(user, span_notice("\The [src] has been dug up, and now lies in a pile nearby."))
|
||||
new /obj/item/stack/material/snow(src)
|
||||
demote()
|
||||
else
|
||||
to_chat(user, "<span class='notice'>You decide to not finish removing \the [src].</span>")
|
||||
to_chat(user, span_notice("You decide to not finish removing \the [src]."))
|
||||
else
|
||||
..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user