[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:
Bill Currie 2022-02-05 10:29:20 +09:00
parent 01345ba675
commit 5500d835fe
1 changed files with 1 additions and 1 deletions

View File

@ -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)),