From 4f56c8f1957e9eac9a8204807586f1658de4c1b0 Mon Sep 17 00:00:00 2001 From: jonpas Date: Fri, 24 Nov 2023 15:43:30 +0100 Subject: [PATCH] General - Fix commas which should be semi-colons --- addons/radios/functions/fnc_init.sqf | 2 +- addons/shootingrange/functions/fnc_checkConfig.sqf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/radios/functions/fnc_init.sqf b/addons/radios/functions/fnc_init.sqf index 645d4f64..29f08276 100644 --- a/addons/radios/functions/fnc_init.sqf +++ b/addons/radios/functions/fnc_init.sqf @@ -35,7 +35,7 @@ private _play = [ {true}, {}, [_target, _x] - ] call ACEFUNC(interact_menu,createAction), + ] call ACEFUNC(interact_menu,createAction); _actions pushBack [_action, [], _target]; } forEach GVAR(tracks); _actions diff --git a/addons/shootingrange/functions/fnc_checkConfig.sqf b/addons/shootingrange/functions/fnc_checkConfig.sqf index fa84db5c..4d792b0c 100644 --- a/addons/shootingrange/functions/fnc_checkConfig.sqf +++ b/addons/shootingrange/functions/fnc_checkConfig.sqf @@ -51,8 +51,8 @@ switch (_mode) do { }; default { _textMode = "ERORR"; - _textConfig = "ERROR", - _textDurationOrTargetAmount = "ERROR" + _textConfig = "ERROR"; + _textDurationOrTargetAmount = "ERROR"; }; };