From f80900fd0bcf8b1a2761a3bbc08b2aea32e582a8 Mon Sep 17 00:00:00 2001 From: Arturlang Date: Thu, 9 Apr 2020 20:07:11 +0300 Subject: [PATCH] Fixes vendors not eating coins (#11795) --- code/modules/vending/_vending.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vending/_vending.dm b/code/modules/vending/_vending.dm index 8fdc1c7c0c..924fd506ff 100644 --- a/code/modules/vending/_vending.dm +++ b/code/modules/vending/_vending.dm @@ -601,7 +601,7 @@ GLOBAL_LIST_EMPTY(vending_products) QDEL_NULL(coin) to_chat(usr, "You successfully pull [coin] out before [src] could swallow it.") coin = null - QDEL_NULL(coin) + QDEL_NULL(coin) else if(!(R in product_records)) vend_ready = TRUE message_admins("Vending machine exploit attempted by [ADMIN_LOOKUPFLW(usr)]!")