Groza_Barrel_Grip.c
class Groza_Barrel_Grip extends SuppressorBase
{
override bool CanPutAsAttachment( EntityAI parent )
{
if(!super.CanPutAsAttachment(parent)) {return false;}
if ( !parent.FindAttachmentBySlotName("weaponButtstockAK").IsKindOf("GrozaGL_LowerReceiver") )
{
return true;
}
return false;
}
}