From 284e23c5046aa5a13bbfc2dd34fa419111d96632 Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Sun, 22 Mar 2026 16:29:54 -0500 Subject: [PATCH] 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 :cl: Melbert qol: Audit log formats vendors without "the" /:cl: --- code/controllers/subsystem/economy.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/economy.dm b/code/controllers/subsystem/economy.dm index dcab6e359ed..750cdfc7d7c 100644 --- a/code/controllers/subsystem/economy.dm +++ b/code/controllers/subsystem/economy.dm @@ -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"), ))