Skip to content

Commit

Permalink
Fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDinamit committed Feb 13, 2024
1 parent e63ebac commit 2531e4c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,6 @@
switch(log_screen)
if(LOG_SHIPPING)
for(var/list/log in reverseRange(SSsupply.shipping_log))
for(var/log in reverseRange(SSsupply.export_log))
dat += "Time: [log["time"]]<br>"
dat += "Account: [log["ordering_acct"]]<br>"
dat += "Link: [log["assoc_faction"]]<br>"
Expand All @@ -823,7 +822,7 @@
dat += "<A href='?src=\ref[src];PRG_print=[log["id"]]'>Print</A>"
dat += "<hr>"
if(LOG_EXPORT)
for(var/log in reverseRange(SSsupply.export_log))
for(var/list/log in reverseRange(SSsupply.export_log))
dat += "Time: [log["time"]]<br>"
dat += "Account: [log["ordering_acct"]]<br>"
dat += "Link: [log["assoc_faction"]]<br>"
Expand Down

0 comments on commit 2531e4c

Please sign in to comment.