Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
grozagl_lowerreceiver.c
Go to the documentation of this file.
1class GrozaGL_LowerReceiver extends ItemBase
2{
3 override bool CanPutAsAttachment( EntityAI parent )
4 {
5 if(!super.CanPutAsAttachment(parent)) {return false;}
6 if ( parent.FindAttachmentBySlotName("weaponMuzzleAK") == NULL )
7 {
8 return true;
9 }
10 return true;
11 }
12}
override bool CanPutAsAttachment(EntityAI parent)