From 84d58a59327755fc4acb6d6dc07aaf30a7e4ffca Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Sat, 15 Oct 2016 17:15:31 -0400 Subject: [PATCH] Update vanilla chop wood and mine stone tool break chance Vanilla commits applied: https://github.com/DayZMod/DayZ/commit/50107678494d481d1944a465faa0eeb9f7325936 https://github.com/DayZMod/DayZ/commit/ac39f46a8c5bd0c3eeb908e4ac147f7762027a47 --- SQF/dayz_code/actions/player_chopWood.sqf | 2 +- SQF/dayz_code/actions/player_mineStone.sqf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/actions/player_chopWood.sqf b/SQF/dayz_code/actions/player_chopWood.sqf index 5ae6275ca..74bc26f16 100644 --- a/SQF/dayz_code/actions/player_chopWood.sqf +++ b/SQF/dayz_code/actions/player_chopWood.sqf @@ -73,7 +73,7 @@ if (count _findNearestTree > 0) then { if(_finished) then { _breaking = false; - if (dayz_toolBreaking && {[0.04] call fn_chance}) then { + if (dayz_toolBreaking && {[0.09] call fn_chance}) then { _breaking = true; if ("MeleeHatchet" in weapons player) then { player removeWeapon "MeleeHatchet"; diff --git a/SQF/dayz_code/actions/player_mineStone.sqf b/SQF/dayz_code/actions/player_mineStone.sqf index 8a962c55d..0a4c2a6bd 100644 --- a/SQF/dayz_code/actions/player_mineStone.sqf +++ b/SQF/dayz_code/actions/player_mineStone.sqf @@ -73,7 +73,7 @@ if (!isNull _findNearestRock) then { if(_finished) then { _breaking = false; - if (dayz_toolBreaking && {[0.04] call fn_chance}) then { + if (dayz_toolBreaking && {[0.09] call fn_chance}) then { _breaking = true; if ("MeleePickaxe" in weapons player) then { player removeWeapon "MeleePickaxe";