Vendors in audit log are no longer prefixed with "the" (#95389)

## About The Pull Request

Uses `vendor.name` if possible, so it's referred to as "VendingMachine"
rather than "The VendingMachine"

## Why It's Good For The Game

Reads a bit better with all the entries presented

## Changelog

🆑 Melbert
qol: Audit log formats vendors without "the"
/🆑
This commit is contained in:
MrMelbert
2026-03-22 17:29:54 -04:00
committed by GitHub
parent 8edccd7e5a
commit 284e23c504
+1 -1
View File
@@ -216,7 +216,7 @@ SUBSYSTEM_DEF(economy)
audit_log += list(list(
"account" = "[account.account_holder]",
"cost" = price_to_use,
"vendor" = "[vendor]",
"vendor" = "[astype(vendor, /atom)?.name || vendor]",
"stationtime" = station_time_timestamp("hh:mm"),
))