Skip to content

Commit

Permalink
text macros
Browse files Browse the repository at this point in the history
  • Loading branch information
fira committed Nov 7, 2023
1 parent 48056f8 commit 5ee4ab6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/modules/recycling/sortingmachinery.dm
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,8 @@
O.add_fingerprint(usr)
src.add_fingerprint(usr)
src.amount--
user.visible_message("\The [user] wraps \a [target] with \a [src].",\
SPAN_NOTICE("You wrap \the [target], leaving [amount] units of paper on \the [src]."),\
user.visible_message("[user] wraps [target] with [src].",\
SPAN_NOTICE("You wrap [target], leaving [amount] units of paper on [src]."),\
"You hear someone taping paper around a small object.")
else if (istype(target, /obj/structure/closet/crate))
var/obj/structure/closet/crate/crate = target
Expand All @@ -290,8 +290,8 @@
package.wrapped = crate
crate.forceMove(package)
amount -= 3
user.visible_message("\The [user] wraps \a [target] with \a [src].",\
SPAN_NOTICE("You wrap \the [target], leaving [amount] units of paper on \the [src]."),\
user.visible_message("[user] wraps [target] with [src].",\
SPAN_NOTICE("You wrap [target], leaving [amount] units of paper on [src]."),\
"You hear someone taping paper around a large object.")
else if(amount < 3)
to_chat(user, SPAN_WARNING("You need more paper."))
Expand All @@ -303,8 +303,8 @@
object.welded = 1
object.forceMove(package)
amount -= 3
user.visible_message("\The [user] wraps \a [target] with \a [src].",\
SPAN_NOTICE("You wrap \the [target], leaving [amount] units of paper on \the [src]."),\
user.visible_message("[user] wraps [target] with [src].",\
SPAN_NOTICE("You wrap [target], leaving [amount] units of paper on [src]."),\
"You hear someone taping paper around a large object.")
else if(amount < 3)
to_chat(user, SPAN_WARNING("You need more paper."))
Expand Down

0 comments on commit 5ee4ab6

Please sign in to comment.