removed autofill/autorefill in pay slot

This commit is contained in:
Sokomine 2021-05-24 20:18:20 +02:00
parent e38044c6ff
commit ec23d8ac01

View File

@ -384,12 +384,14 @@ yl_speak_up.get_fs_trade_simple = function(player)
elseif not(trade_inv:is_empty("pay")) then
-- both slots will remain empty
-- (the slot may already contain the right things; we'll find that out later on)
trade_possible_msg = "Please insert the right payment manually."
trade_possible_msg = "Please insert the right payment!"
-- all good so far; move the price stack to the pay slot
-- else
-- -- move price item to the price slot
-- local stack = player_inv:remove_item("main", trade.player_gives)
-- trade_inv:add_item("pay", stack)
else
-- move price item to the price slot
local stack = player_inv:remove_item("main", trade.player_gives)
trade_inv:add_item("pay", stack)
trade_possible_msg = "Please insert the right payment in the pay slot."
end
-- make sure the sale slot is empty (we will fill it if the trade is possible)