From 81392aa6ae5eae3b5ebba9090954fb193d59862f Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Sat, 18 Jan 2025 13:24:06 -0600 Subject: [PATCH] Marking Laser - Change warning to info (#10672) --- addons/markinglaser/functions/fnc_onAircraftInit.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/markinglaser/functions/fnc_onAircraftInit.sqf b/addons/markinglaser/functions/fnc_onAircraftInit.sqf index b6ba81308d9..e0ba1b91a91 100644 --- a/addons/markinglaser/functions/fnc_onAircraftInit.sqf +++ b/addons/markinglaser/functions/fnc_onAircraftInit.sqf @@ -27,7 +27,7 @@ private _hasPilotCamera = getNumber (_config >> "PilotCamera" >> "controllable") if ((_turretData isEqualTo []) && {!_hasPilotCamera}) exitWith { _aircraft setVariable [QGVAR(enabled), false]; - WARNING_1("Class %1 does not have a pilot camera nor a turret that could be equipped with an IR marking laser.",configName _config); + INFO_1("Class %1 does not have a pilot camera nor a turret that could be equipped with an IR marking laser.",configName _config); }; _aircraft setVariable [QGVAR(enabled), true];