Okay, so, urm, don't print DISTRIBUTION as part of the version, print FTE instead. Thanks.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1593 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
167f762a51
commit
2e22d7ed34
1 changed files with 2 additions and 2 deletions
|
@ -1058,7 +1058,7 @@ void SVC_GetChallenge (void)
|
|||
if (sv_listen.value >= 2)
|
||||
{
|
||||
//dp can respond to this (and fte won't get confused because the challenge will be wrong)
|
||||
buf = va("challenge DISTRIBUTION%i", svs.challenges[i].challenge);
|
||||
buf = va("challenge "DISTRIBUTION"%i", svs.challenges[i].challenge);
|
||||
Netchan_OutOfBand(NS_SERVER, net_from, strlen(buf)+1, buf);
|
||||
}
|
||||
}
|
||||
|
@ -2860,7 +2860,7 @@ void SV_MVDStream_Poll(void);
|
|||
|
||||
// process console commands
|
||||
if (!pr_imitatemvdsv.value)
|
||||
Cbuf_Execute ();
|
||||
Cbuf_Execute ();
|
||||
}
|
||||
|
||||
if (sv.state < ss_active) //whoops...
|
||||
|
|
Loading…
Reference in a new issue