mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
Fix game warnings
This commit is contained in:
parent
b55809b925
commit
fbdb3e0875
2 changed files with 7 additions and 3 deletions
|
@ -1174,6 +1174,10 @@ int BotAISetupClient(int client, struct bot_settings_s *settings, qboolean resta
|
|||
if (!botstates[client]) botstates[client] = G_Alloc(sizeof(bot_state_t));
|
||||
bs = botstates[client];
|
||||
|
||||
if (!bs) {
|
||||
return qfalse;
|
||||
}
|
||||
|
||||
if (bs && bs->inuse) {
|
||||
BotAI_Print(PRT_FATAL, "BotAISetupClient: client %d already setup\n", client);
|
||||
return qfalse;
|
||||
|
|
|
@ -161,7 +161,7 @@ int BotSortTeamMatesByBaseTravelTime(bot_state_t *bs, int *teammates, int maxtea
|
|||
//skip spectators
|
||||
if (atoi(Info_ValueForKey(buf, "t")) == TEAM_SPECTATOR) continue;
|
||||
//
|
||||
if (BotSameTeam(bs, i)) {
|
||||
if (BotSameTeam(bs, i) && goal) {
|
||||
//
|
||||
traveltime = BotClientTravelTimeToGoal(i, goal);
|
||||
//
|
||||
|
@ -337,7 +337,7 @@ BotCTFOrders
|
|||
*/
|
||||
void BotCTFOrders_BothFlagsNotAtBase(bot_state_t *bs) {
|
||||
int numteammates, defenders, attackers, i, other;
|
||||
int teammates[MAX_CLIENTS];
|
||||
int teammates[MAX_CLIENTS] = {0};
|
||||
char name[MAX_NETNAME], carriername[MAX_NETNAME];
|
||||
|
||||
numteammates = BotSortTeamMatesByBaseTravelTime(bs, teammates, sizeof(teammates));
|
||||
|
@ -695,7 +695,7 @@ BotCTFOrders
|
|||
*/
|
||||
void BotCTFOrders_BothFlagsAtBase(bot_state_t *bs) {
|
||||
int numteammates, defenders, attackers, i;
|
||||
int teammates[MAX_CLIENTS];
|
||||
int teammates[MAX_CLIENTS] = {0};
|
||||
char name[MAX_NETNAME];
|
||||
|
||||
//sort team mates by travel time to base
|
||||
|
|
Loading…
Reference in a new issue