Skip to content

Commit

Permalink
Reverse-list instead of reverse-range
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDinamit committed Feb 13, 2024
1 parent 2a2a583 commit f48dd6f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@

switch(log_screen)
if(LOG_SHIPPING)
for(var/list/log in reverseRange(SSsupply.shipping_log))
for(var/list/log in reverselist(SSsupply.shipping_log))
dat += "Time: [log["time"]]<br>"
dat += "Account: [log["ordering_acct"]]<br>"
dat += "Link: [log["assoc_faction"]]<br>"
Expand All @@ -822,7 +822,7 @@
dat += "<A href='?src=\ref[src];PRG_print=[log["id"]]'>Print</A>"
dat += "<hr>"
if(LOG_EXPORT)
for(var/list/log in reverseRange(SSsupply.export_log))
for(var/list/log in reverselist(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 f48dd6f

Please sign in to comment.