From 473fa49197cc2abed1b3d4e578f5927a27bd4b12 Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Sun, 24 Nov 2013 15:45:36 -0600 Subject: [PATCH] remove brackets from cutext output --- SQF/dayz_code/actions/unlock_veh.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/actions/unlock_veh.sqf b/SQF/dayz_code/actions/unlock_veh.sqf index c17bdedf5..55cdd6ae1 100644 --- a/SQF/dayz_code/actions/unlock_veh.sqf +++ b/SQF/dayz_code/actions/unlock_veh.sqf @@ -16,7 +16,7 @@ if(player distance _vehicle < 10) then { publicVariable "PVDZE_veh_Lock"; }; - cutText [format["[%1] used to unlock vehicle.",_key], "PLAIN"]; + cutText [format["%1 used to unlock vehicle.",_key], "PLAIN"]; }; s_player_lockUnlock_crtl = -1;