add a line to get rid of 4 first aid kits in the invisible helper

The helper "ace_fastroping_helper" inherits from Helicopter_Base_F, and here's chain of inheritance.
class CfgVehicles
{
	class AllVehicles;
	class Air: AllVehicles
	{
		class TransportItems
		{
			class _xx_FirstAidKit
			{
				name = "FirstAidKit";
				count = 4;
			};
		};
	};
	class Helicopter: Air
	{
	};
	class Helicopter_Base_F: Helicopter
	{
	};
	class ace_fastroping_helper: Helicopter_Base_F
	{
		class TransportItems {};	// now overrides the first aid kits
	};
};
Was a happy and funny surprise to pick up some decent medical supplies from one end of a cut rope.
This commit is contained in:
gpgpgpgp 2016-06-08 17:26:23 +08:00
parent 24ce8b7753
commit 0c28cd4413

View File

@ -155,6 +155,7 @@ class CfgVehicles {
model = QPATHTOF(data\helper.p3d);
class ACE_Actions {};
class Turrets {};
class TransportItems {};
};
class Helicopter_Base_H;