From 1ef5cba2f26c4d02bd74c8cc4b5759e01f5084e2 Mon Sep 17 00:00:00 2001 From: Manuel Simon Hirsig Date: Thu, 9 Feb 2017 12:42:38 +0100 Subject: [PATCH] bugfix --- tabs/post/core.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tabs/post/core.lua b/tabs/post/core.lua index 5cddff1..895cf1c 100644 --- a/tabs/post/core.lua +++ b/tabs/post/core.lua @@ -114,12 +114,13 @@ function update_auction_listing(listing, records, reference) local stack_size = stack_size_slider:GetValue() for i = 1, getn(records[selected_item.key] or empty) do local record = records[selected_item.key][i] + local undercut = money.from_string(money.to_string(undercut(record, stack_size_slider:GetValue(), listing == 'bid'), true, nil, 3)) tinsert(rows, O( 'cols', A( O('value', record.own and color.yellow(record.count) or record.count), O('value', al.time_left(record.duration)), O('value', record.stack_size == stack_size and color.yellow(record.stack_size) or record.stack_size), - O('value', money.to_string(record.unit_price, true, nil, 3, undercut(record, stack_size_slider:GetValue(), listing == 'bid') < reference and color.red)), + O('value', money.to_string(record.unit_price, true, nil, 3, undercut < reference and color.red)), O('value', historical_value and al.percentage_historical(round(record.unit_price / historical_value * 100)) or '---') ), 'record', record