M4_CarryHandleOptic.c
class M4_CarryHandleOptic extends ItemOptics
{
override bool CanPutAsAttachment( EntityAI parent )
{
if(!super.CanPutAsAttachment(parent)) {return false;}
if ( parent.IsKindOf("M4A1_Base") )
{
return true;
}
return false;
}
}