SVN r116 (trunk)

This commit is contained in:
Randy Heit 2006-05-16 02:50:18 +00:00
commit ac53ed6ecd
25 changed files with 595 additions and 740 deletions

View file

@ -64,7 +64,8 @@ void DCajunMaster::ClearPlayer (int i, bool keepTeam)
bot->inuse = false;
bot->lastteam = keepTeam ? players[i].userinfo.team : TEAM_None;
}
memset (&players[i], 0, sizeof(player_t));
players[i].~player_t();
::new(&players[i]) player_t;
playeringame[i] = false;
}