SV_ParseClientCommand: Forgot to pass the default case over to clientcommand(). That is now fixed.
This commit is contained in:
parent
6c8d785ce2
commit
ff7ce15399
1 changed files with 3 additions and 1 deletions
|
@ -318,7 +318,9 @@ SV_ParseClientCommand(string cmd)
|
|||
if (cvar("sv_cheats") == 1) {
|
||||
setorigin(self, stov(argv(1)));
|
||||
}
|
||||
break;
|
||||
break;
|
||||
default:
|
||||
clientcommand(self, cmd);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue