mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[qw] Fix a mangled builtin number
When doing the builtin params data change, I had somehow switch multicast's number from 82 to 81. Fortunately, another builtin is also 81, so the VM told me off when I tried to run qw-server :)
This commit is contained in:
parent
01345ba675
commit
5500d835fe
1 changed files with 1 additions and 1 deletions
|
@ -2020,7 +2020,7 @@ static builtin_t builtins[] = {
|
|||
|
||||
bi(logfrag, 79, 2, p(entity), p(entity)),
|
||||
bi(infokey, 80, 2, p(entity), p(string)),
|
||||
bi(multicast, 81, 2, p(vector), p(float)),
|
||||
bi(multicast, 82, 2, p(vector), p(float)),
|
||||
|
||||
bi(testentitypos, QF 92, 1, p(entity)),
|
||||
bi(hullpointcontents, QF 93, 2, p(entity), p(vector)),
|
||||
|
|
Loading…
Reference in a new issue