VITA/NX: Let engine dictate max AI

This commit is contained in:
cypress 2023-10-16 16:04:04 -04:00 committed by GitHub
parent 07b01ad46e
commit 5ededc76b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 1 deletions

View File

@ -1299,6 +1299,21 @@ void PF_GrenadePulse(void)
MSG_WriteByte (&client->message,svc_pulse);
}
/*
=================
PF_MaxZombies
Returns the total number of zombies
the platform can have out at once.
nzp_maxai()
=================
*/
void PF_MaxZombies(void)
{
G_FLOAT(OFS_RETURN) = 24;
}
/*
=================
PF_achievement
@ -3789,6 +3804,7 @@ static builtin_t pr_builtin[] =
PF_SongEgg, // #500
PF_MaxAmmo, // #501
PF_GrenadePulse, // #502
PF_MaxZombies, // #503
};
builtin_t *pr_builtins = pr_builtin;