From 29095ca45ff7a734a4860e41bc57f3a007afb7aa Mon Sep 17 00:00:00 2001 From: A Man Date: Tue, 24 Aug 2021 17:12:15 +0200 Subject: [PATCH] Fix missing string --- SQF/dayz_code/actions/gather_meat.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/actions/gather_meat.sqf b/SQF/dayz_code/actions/gather_meat.sqf index c77bf8ee7..2416d3848 100644 --- a/SQF/dayz_code/actions/gather_meat.sqf +++ b/SQF/dayz_code/actions/gather_meat.sqf @@ -22,7 +22,7 @@ local _string = ""; // Exit the script if the player doesn't have a knife if ((count _knives) < 1) exitWith { if (_isZombie || _isMutant) then { - format[localize "str_missing_to_do_this",localize "STR_EQUIP_NAME_4"] call dayz_rollingMessages; + format[localize "str_missing_to_do_this",localize "STR_EQUIP_NAME_KNIFE"] call dayz_rollingMessages; } else { localize "str_cannotgut" call dayz_rollingMessages; };