From f777294485ae80bb8128b30eb8d742c1b3a80e31 Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Mon, 25 Nov 2013 18:29:49 -0600 Subject: [PATCH] hunger and thirst on melee swing --- SQF/dayz_code/compile/player_fired.sqf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SQF/dayz_code/compile/player_fired.sqf b/SQF/dayz_code/compile/player_fired.sqf index 11e23f8e0..76884d6dd 100644 --- a/SQF/dayz_code/compile/player_fired.sqf +++ b/SQF/dayz_code/compile/player_fired.sqf @@ -18,6 +18,8 @@ dayz_combat = 1; if (_ammo isKindOf "Melee") exitWith { _unit playActionNow "GestureSwing"; + [1,1] call dayz_HungerThirst; + // harvest wood check _id = _this spawn player_harvest; };