Examine Code Refactor

This commit is contained in:
Dip
2020-10-06 23:36:21 -03:00
parent c433514622
commit aa7d47a23b
334 changed files with 1337 additions and 1365 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)