From f90dd9fed8d85435fa216cefba6fe2c85eacf517 Mon Sep 17 00:00:00 2001 From: VKing Date: Wed, 13 Jan 2016 00:14:17 +0100 Subject: [PATCH] Allow SLAMs to use long range transmitter --- addons/explosives/CfgMagazines.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/addons/explosives/CfgMagazines.hpp b/addons/explosives/CfgMagazines.hpp index 38cd1314ed..eb5e863391 100644 --- a/addons/explosives/CfgMagazines.hpp +++ b/addons/explosives/CfgMagazines.hpp @@ -58,7 +58,7 @@ class CfgMagazines { ACE_SetupObject = "ACE_Explosives_Place_SatchelCharge"; ACE_DelayTime = 1; class ACE_Triggers { - SupportedTriggers[] = {"Timer","Command", "MK16_Transmitter", "DeadmanSwitch"}; + SupportedTriggers[] = {"Timer", "Command", "MK16_Transmitter", "DeadmanSwitch"}; class Timer { FuseTime = 0.5; }; @@ -77,7 +77,7 @@ class CfgMagazines { class SLAMDirectionalMine_Wire_Mag: ATMine_Range_Mag { ACE_SetupObject = "ACE_Explosives_Place_SLAM"; class ACE_Triggers { - SupportedTriggers[] = {"IRSensor","PressurePlate","Timer","Command"}; + SupportedTriggers[] = {"IRSensor", "PressurePlate", "Timer", "Command", "MK16_Transmitter"}; class PressurePlate{ displayName = CSTRING(SLAME_Magnetic); digDistance = 0; @@ -94,6 +94,7 @@ class CfgMagazines { ammo = "ACE_SLAMDirectionalMine_Command_Ammo"; fuseTime = 0.5; }; + class MK16_Transmitter: Command {}; }; };