From 0391fef4ff62aa0b9b92bcab83517a8ad01669d8 Mon Sep 17 00:00:00 2001 From: oiad Date: Sat, 5 Jan 2019 11:12:29 +1300 Subject: [PATCH] Update private tags This was breaking scripts that use a variable called `_chance` _chance = 30; [player,"repair",0,false,50] call dayz_zombieSpeak; _chance would get changed to 0 --- SQF/dayz_code/compile/object_speak.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/compile/object_speak.sqf b/SQF/dayz_code/compile/object_speak.sqf index 97845424c..820db5a3b 100644 --- a/SQF/dayz_code/compile/object_speak.sqf +++ b/SQF/dayz_code/compile/object_speak.sqf @@ -1,4 +1,4 @@ -private ["_type","_local","_unit"]; +private ["_chance","_dis","_isWoman","_local","_num","_rnd","_sound","_type","_unit"]; _unit = _this select 0; _type = _this select 1;