From 1d916614b79c7eccc5550e64e315468ffc075655 Mon Sep 17 00:00:00 2001 From: tno1 Date: Sat, 9 Nov 2024 03:32:28 +0100 Subject: [PATCH] Fixed Issue #65 Fixed the issue reported by Sageboba. https://github.com/djmango/BlackMarket2/issues/65 The solution that worked was just changing it from asking for coal, when it would be better to just ask for ucoin as default item when creating a new buy order --- control.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control.lua b/control.lua index 31d3e29..1c85fb6 100644 --- a/control.lua +++ b/control.lua @@ -2776,7 +2776,7 @@ local function on_gui_click(event) if trader.type == trader_type.item then if #trader.orders < 99 then - table.insert(trader.orders,1,{name="coal", count=0, price=storage.prices.coal.current, quality=1}) + table.insert(trader.orders,1,{name="ucoin", count=0, price=storage.prices.ucoin.current, quality=1}) update_menu_trader(player,player_mem,true) end end