DayZ 1.24
Loading...
Searching...
No Matches
BUISOptic.c
Go to the documentation of this file.
1class BUISOptic extends ItemOptics
2{
3 override bool CanPutAsAttachment(EntityAI parent)
4 {
5 if (!super.CanPutAsAttachment(parent)) return false;
6 if (parent.IsKindOf("M4A1_Base"))
7 return true;
8
9 return false;
10 //return true;
11 }
12}
override bool CanPutAsAttachment(EntityAI parent)
Definition BUISOptic.c:3