From bf3154dd2ba0ce68c35db14cdaf7d1d238831c8e Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Wed, 12 Mar 2014 10:42:13 -0500 Subject: [PATCH] added missing ) --- SQF/dayz_code/actions/trade_items.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/actions/trade_items.sqf b/SQF/dayz_code/actions/trade_items.sqf index f3228673a..0eaed0a5a 100644 --- a/SQF/dayz_code/actions/trade_items.sqf +++ b/SQF/dayz_code/actions/trade_items.sqf @@ -30,7 +30,7 @@ while {r_autoTrade} do { // check if current magazine count is greater than 20 - if ((count (magazines player) > 20) exitWith { cutText [(localize "STR_DAYZ_CODE_2"), "PLAIN DOWN"]; r_autoTrade = false}; + if ((count (magazines player)) > 20) exitWith { cutText [(localize "STR_DAYZ_CODE_2"), "PLAIN DOWN"]; r_autoTrade = false}; cutText [(localize "str_epoch_player_105"), "PLAIN DOWN"];