I know embarrasingly little about cores /blush.gif" style="vertical-align:middle" emoid="
Hopefully these numbers translate to something that is meaningfull outside of the code
mdata is a structure with the following values
Code: Select all
amount 15
partID 86
succesorPartID 238
launchCount 1
expendabletypeID 26
inventoryLineMDL "invchaff"Code: Select all
if (m_pexpendabletype)
{
m_equipmenttype = m_pexpendabletype->GetEquipmentType();
m_pexpendabletype->AddRef();
m_launcherDef = m_pexpendabletype->GetLauncherDef();
if (m_data.successorPartID != NA)
{
m_pptSuccessor = pMission->GetPartType(m_data.successorPartID);
assert (m_pptSuccessor); <---- THIS IS WHERE IT FAILS
}
pMission->AddPartType(this);
}
