You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (pParm->m_string.compareNoCase("MISSILE") == 0)
2568
+
Bool found = false;
2569
+
for (int i = 0; kindofNames[i]; ++i)
2580
2570
{
2581
-
pParm->m_string.format( "SMALL_MISSILE" );
2582
-
for( i = 0; kindofNames[i]; ++i )
2571
+
if (pParm->m_string.compareNoCase(kindofNames[i]) == 0)
2572
+
{
2573
+
pParm->setInt(i);
2574
+
found = true;
2575
+
break;
2576
+
}
2577
+
if( !pParm->m_string.compareNoCase( "CRUSHER" ) )
2578
+
{
2579
+
pParm->setInt(i);
2580
+
found = true;
2581
+
DEBUG_CRASH(( "Kindof CRUSHER no longer exists -- in order to get your map to load, it has been switched to OBSTACLE, please call Kris (x36844).", pParm->m_string.str()));
DEBUG_CRASH(( "Kindof CRUSHABLE no longer exists -- in order to get your map to load, it has been switched to OBSTACLE, please call Kris (x36844).", pParm->m_string.str()));
DEBUG_CRASH(( "Kindof OVERLAPPABLE no longer exists -- in order to get your map to load, it has been switched to OBSTACLE, please call Kris (x36844).", pParm->m_string.str()));
0 commit comments