refactors most spans

This commit is contained in:
Kashargul
2024-10-02 21:10:31 +02:00
parent 5417c7772c
commit a2c673ab7a
1517 changed files with 12436 additions and 12347 deletions
@@ -276,9 +276,9 @@
// Simplified payment processing, returns 1 on success.
/obj/machinery/lapvend/proc/process_payment(var/obj/item/card/id/I, var/obj/item/ID_container)
if(I==ID_container || ID_container == null)
visible_message("<span class='info'>\The [usr] swipes \the [I] through \the [src].</span>")
visible_message(span_info("\The [usr] swipes \the [I] through \the [src]."))
else
visible_message("<span class='info'>\The [usr] swipes \the [ID_container] through \the [src].</span>")
visible_message(span_info("\The [usr] swipes \the [ID_container] through \the [src]."))
var/datum/money_account/customer_account = get_account(I.associated_account_number)
if (!customer_account || customer_account.suspended)
ping("Connection error. Unable to connect to account.")