From 0394c61183274884c8f73d369ec8de20af23573b Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Thu, 18 Aug 2016 13:27:00 -0400 Subject: [PATCH] Match Adv Trade blue color for compatible highlight Matches blue used in advancedTrading.hpp, slightly lighter and easier to see on dark grey background. @oiad 42ebfb5 --- .../actions/AdvancedTrading/functions/z_at_fillBuyableList.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/actions/AdvancedTrading/functions/z_at_fillBuyableList.sqf b/SQF/dayz_code/actions/AdvancedTrading/functions/z_at_fillBuyableList.sqf index 02474ec48..598e136f1 100644 --- a/SQF/dayz_code/actions/AdvancedTrading/functions/z_at_fillBuyableList.sqf +++ b/SQF/dayz_code/actions/AdvancedTrading/functions/z_at_fillBuyableList.sqf @@ -19,7 +19,7 @@ _count = 0; if (_type == "trade_items") then { { if (isText(configFile >> "CfgWeapons" >> _x >> "Attachments" >> _name) or _name in getArray (configFile >> "CfgWeapons" >> _x >> "magazines")) then { - lbSetColor [Z_AT_BUYABLELIST, _index, [.0,.6,.9,1]]; + lbSetColor [Z_AT_BUYABLELIST, _index, [0.2,0.75,1]]; }; } count _weapons; _count = {_x == _name} count magazines player;