From 86d10530120627291fa436a8cc3f029051a376e0 Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Sun, 24 Nov 2013 18:41:27 -0600 Subject: [PATCH] fixed #755 --- SQF/dayz_code/actions/trade_items.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/actions/trade_items.sqf b/SQF/dayz_code/actions/trade_items.sqf index 174455b91..13c1cfb00 100644 --- a/SQF/dayz_code/actions/trade_items.sqf +++ b/SQF/dayz_code/actions/trade_items.sqf @@ -95,9 +95,9 @@ for "_x" from 1 to _total_trades do { _qty = {_x == _part_in} count magazines player; if (_qty >= _qty_in) then { - _part_in = configFile >> "CfgMagazines" >> _part_in; + _part_inClass = configFile >> "CfgMagazines" >> _part_in; - _removed = _removed + ([player,_part_in,_qty_in] call BIS_fnc_invRemove); + _removed = _removed + ([player,_part_inClass,_qty_in] call BIS_fnc_invRemove); if (_removed == _qty_in) then { // Continue with trade.