From d4f6f07093aecf1f2c41e55f5b2a71d709091c2d Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Sat, 4 Jun 2016 16:38:41 -0400 Subject: [PATCH] Fix gut zombie missing knife text Shows "Missing Hunting Knife to do this" instead of "Missing knife to gut animal" --- SQF/dayz_code/actions/gather_zparts.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/actions/gather_zparts.sqf b/SQF/dayz_code/actions/gather_zparts.sqf index a523de7b6..996817998 100644 --- a/SQF/dayz_code/actions/gather_zparts.sqf +++ b/SQF/dayz_code/actions/gather_zparts.sqf @@ -18,7 +18,7 @@ if (_playerNear) exitWith {localize "str_pickup_limit_5" call dayz_rollingMessag if (_x in items player) then {_knifeArray set [count _knifeArray, _x];}; } count Dayz_Gutting; -if ((count _knifeArray) < 1) exitWith {localize "str_cannotgut" call dayz_rollingMessages; DZE_ActionInProgress = false; }; +if ((count _knifeArray) < 1) exitWith {format[localize "str_cannotCraft",localize "STR_EQUIP_NAME_4"] call dayz_rollingMessages; DZE_ActionInProgress = false; }; if ((count _knifeArray > 0) && !_hasHarvested) then { private "_qty";