Advertisement
MageKing17

Untitled

Oct 13th, 2015
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1.             // See if the ship is currently in the mission. If not, check if it is on the arrival list.
  2.             // Otherwise, we can assume it was destroyed or departed.
  3.             shipnum = ship_name_lookup( name );
  4.             if ( shipnum == -1 ) {
  5.                 // see if ship is yet to arrive.  If so, then return 0 so we can evaluate again later.
  6.                 if ( mission_parse_get_arrival_ship( name ) )
  7.                     return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement