Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
en5c_waterproofbag_colorbase.c
Go to the documentation of this file.
2{
3 override bool CanPutInCargo(EntityAI parent)
4 {
5 if (!super.CanPutInCargo(parent))
6 return false;
7
8 if (parent && (parent.IsKindOf("AmmoBox") || parent.IsKindOf("WaterproofBag_ColorBase")))
9 return false;
10
11 return true;
12 }
13}
14
15class WaterproofBag_Yellow : WaterproofBag_ColorBase {};