1193 {
1194 if (dst1 == null)
1195 dst1 = new InventoryLocation();
1196
1197 dst1.Copy(src1);
1198 dst1.CopyLocationFrom(src2, false);
1199 dst1.SetFlip(src1.GetItem().GetInventory().GetFlipCargo());
1200
1201 if (dst2 == null)
1202 dst2 = new InventoryLocation();
1203
1204 dst2.Copy(src2);
1205 dst2.CopyLocationFrom(src1, false);
1206 dst2.SetFlip(src2.GetItem().GetInventory().GetFlipCargo());
1207 return true;
1208 }