Fix related CID/IPs on player panel

This commit is contained in:
CitadelStationBot
2017-06-09 08:59:57 -05:00
parent 8ef2931630
commit 07cb1ab1de
4 changed files with 24 additions and 5 deletions
+3 -4
View File
@@ -2247,9 +2247,8 @@
thing_to_check = splittext(thing_to_check, ", ")
var/dat = "Related accounts by [uppertext(href_list["showrelatedacc"])]:<br>"
for(var/thing in thing_to_check)
dat += "[thing]<br>"
var/list/dat = list("Related accounts by [uppertext(href_list["showrelatedacc"])]:")
dat += thing_to_check
usr << browse(dat, "size=420x300")
usr << browse(dat.Join("<br>"), "window=related_[C];size=420x300")