diff --git a/SQF/dayz_code/actions/player_craftItem.sqf b/SQF/dayz_code/actions/player_craftItem.sqf index 63587bad1..8ef0aabd9 100644 --- a/SQF/dayz_code/actions/player_craftItem.sqf +++ b/SQF/dayz_code/actions/player_craftItem.sqf @@ -100,6 +100,9 @@ if (_canDo) then { if (_x == "ItemKnife") then { {if (_x in Dayz_Gutting) exitWith {_hastoolweapon = true};} forEach (items player); }; + if (_x == "ItemMatchbox") then { + {if (_x in Dayz_Ignators) exitWith {_hastoolweapon = true};} forEach (items player); + }; if (!_hastoolweapon) exitWith { _craft_doLoop = false; _missingTools = true; _missing = _x; }; } forEach _selectedRecipeTools; @@ -280,4 +283,4 @@ if (_canDo) then { } else { localize "str_epoch_player_64" call dayz_rollingMessages; }; -dayz_actionInProgress = false; \ No newline at end of file +dayz_actionInProgress = false;