diff --git a/addons/explosives/CfgAmmo.hpp b/addons/explosives/CfgAmmo.hpp index c02885362e..5338a01fc5 100644 --- a/addons/explosives/CfgAmmo.hpp +++ b/addons/explosives/CfgAmmo.hpp @@ -13,7 +13,6 @@ class CfgAmmo { class MineCore: TimeBombCore; class MineBase: MineCore; class APERSMine_Range_Ammo: MineBase; - class ATMine_Range_Ammo: MineBase; class DirectionalBombCore: TimeBombCore; class DirectionalBombBase: DirectionalBombCore; @@ -65,6 +64,12 @@ class CfgAmmo { GVAR(size) = 0; }; + // More sensitive pressure-fuze for the Vanilla AT Mine. + class MineBase; + class ATMine_Range_Ammo: MineBase { + mineTrigger = "ACE_TankTriggerLight"; + }; + // "The SLAM has an anti-tamper feature that is only active in the bottom- and side-attack modes." class SLAMDirectionalMine_Wire_Ammo: DirectionalBombBase { indirectHitRange = 20; diff --git a/addons/explosives/config.cpp b/addons/explosives/config.cpp index b60186ab68..29bca8268e 100644 --- a/addons/explosives/config.cpp +++ b/addons/explosives/config.cpp @@ -58,4 +58,11 @@ class CfgMineTriggers { mineMagnetic = 1; mineTriggerRange = 1; }; + + class TankTriggerMagnetic; + class ACE_TankTriggerLight: TankTriggerMagnetic { + // Reduce mass needed to trigger vanilla AT Mine to realistic levels (https://en.wikipedia.org/wiki/M15_mine#Specifications). + // Will now trigger for any vehicle heavier than the Vanilla ATV (280kg) + mineTriggerMass = 300; // Default: 7000 + }; };