Fixes admin tickets displaying as improper nouns (#53485)

Admin tickets were having "the" prepended to them when displayed in the status tab, because ahelps are treated as datums and BYOND likes to help out and treat them as nouns when printed. This resolves that.
This commit is contained in:
Ryll Ryll
2020-09-07 17:49:14 -03:00
committed by GitHub
parent a6755f7421
commit e9ee817cb4
+2 -1
View File
@@ -98,7 +98,8 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
for(var/I in active_tickets)
var/datum/admin_help/AH = I
if(AH.initiator)
L[++L.len] = list("#[AH.id]. [AH.initiator_key_name]:", "[AH.statclick.update()]", REF(AH))
var/obj/effect/statclick/updated = AH.statclick.update()
L[++L.len] = list("#[AH.id]. [AH.initiator_key_name]:", "[updated.name]", REF(AH))
else
++num_disconnected
if(num_disconnected)