Merge pull request #3 from nzp-team/ryan_bprint_fix

Fix for improper bprint call
This commit is contained in:
Ian 2023-02-27 10:30:48 -05:00 committed by GitHub
commit a559e3f114
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -283,14 +283,14 @@ PF_bprint
broadcast print to everyone on server
bprint(value)
bprint(style, value)
=================
*/
void PF_bprint (void)
{
char *s;
s = PF_VarString(0);
//
float style = G_FLOAT(OFS_PARM0);
char *s = PF_VarString(1);
SV_BroadcastPrintf ("%s", s);
}