From 2acc6a62c345453373f293b243cd7f87b5099bd0 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 1 Oct 2021 20:59:55 +0200 Subject: [PATCH] [MIRROR] Fixes the message when you try to order with a budget card [MDB IGNORE] (#8526) * fixes the message when ordering with a budget (#61788) * Fixes the message when you try to order with a budget card Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> --- .../modular_computers/file_system/programs/budgetordering.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/modular_computers/file_system/programs/budgetordering.dm b/code/modules/modular_computers/file_system/programs/budgetordering.dm index 0f23917334f..29f4b19c7ae 100644 --- a/code/modules/modular_computers/file_system/programs/budgetordering.dm +++ b/code/modules/modular_computers/file_system/programs/budgetordering.dm @@ -212,7 +212,7 @@ computer.say("No ID card detected.") return if(istype(id_card, /obj/item/card/id/departmental_budget)) - computer.say("The [src] rejects [id_card].") + computer.say("[id_card] cannot be used to make purchases.") return account = id_card.registered_account if(!istype(account))