91 {
92 if ( !super.CanLoadItemIntoCargo( item ) )
93 return false;
94
96 return false;
97
98
99 int slotId;
100 for (int i = 0; i < GetInventory().GetSlotIdCount(); i++)
101 {
102 slotId = GetInventory().GetSlotId(i);
103 if (item.GetInventory().HasAttachmentSlot(slotId))
104 {
105
106 return false;
107 }
108 }
109
110 return true;
111 }
bool IsCargoException4x3(EntityAI item)