From 1cb83547fa6b82525ad06cb68608cc7b76d3501d Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Sun, 3 May 2020 03:23:00 +0200 Subject: [PATCH] whops! --- 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 92b90609a8..66f204460a 100644 --- a/code/modules/vending/_vending.dm +++ b/code/modules/vending/_vending.dm @@ -575,7 +575,7 @@ GLOBAL_LIST_EMPTY(vending_products) var/cost_mult = get_best_discount(C) if(cost_mult != 1) .["cost_mult"] = cost_mult - if(cost < 1) + if(cost_mult < 1) .["cost_text"] = " [(1 - cost_mult) * 100]% OFF" else .["cost_text"] = " [(cost_mult - 1) * 100]% EXTRA"