This commit is contained in:
Ghommie
2019-11-19 18:00:56 +01:00
parent a52e292cc8
commit dd101ef221
113 changed files with 519 additions and 552 deletions
@@ -50,13 +50,13 @@
sortTypes |= n
/obj/structure/disposalpipe/sorting/mail/examine(mob/user)
..()
. = ..()
if(sortTypes.len)
to_chat(user, "It is tagged with the following tags:")
. += "It is tagged with the following tags:"
for(var/t in sortTypes)
to_chat(user, "\t[GLOB.TAGGERLOCATIONS[t]].")
. += "\t[GLOB.TAGGERLOCATIONS[t]]."
else
to_chat(user, "It has no sorting tags set.")
. += "It has no sorting tags set."
/obj/structure/disposalpipe/sorting/mail/attackby(obj/item/I, mob/user, params)