Merge branch 'master' into HeadCorgi

This commit is contained in:
lolman360
2019-11-28 08:45:19 +11:00
committed by GitHub
486 changed files with 3426 additions and 1976 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)