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