From ae39ba3cca1e272202e6b451b25cedf2fd3f8824 Mon Sep 17 00:00:00 2001 From: qweq12yt <45515587+qweq12yt@users.noreply.github.com> Date: Sat, 27 Mar 2021 11:38:58 -0300 Subject: [PATCH] ok multiples of 5 tho --- code/modules/cargo/blackmarket/blackmarket_item.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cargo/blackmarket/blackmarket_item.dm b/code/modules/cargo/blackmarket/blackmarket_item.dm index dbea2572a2..de5d7c2913 100644 --- a/code/modules/cargo/blackmarket/blackmarket_item.dm +++ b/code/modules/cargo/blackmarket/blackmarket_item.dm @@ -17,7 +17,7 @@ /datum/blackmarket_item/New() if(isnull(price)) - price = round(rand(price_min, price_max), 10) + price = round(rand(price_min, price_max), 5) if(isnull(stock)) stock = rand(stock_min, stock_max)