Skip to content

Commit

Permalink
Merge pull request #66 from tno1/master
Browse files Browse the repository at this point in the history
Fixed new buy order issue when mixed with Py as mentioned in issue #65
  • Loading branch information
djmango authored Nov 9, 2024
2 parents a2ee0cd + 1d91661 commit a0f7b03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a0f7b03

Please sign in to comment.