SV_ParseClientCommand: Forgot to pass the default case over to clientcommand(). That is now fixed.

This commit is contained in:
Marco Cawthorne 2022-12-22 16:29:02 -08:00
parent 6c8d785ce2
commit ff7ce15399
Signed by: eukara
GPG key ID: CE2032F0A2882A22

View file

@ -318,7 +318,9 @@ SV_ParseClientCommand(string cmd)
if (cvar("sv_cheats") == 1) {
setorigin(self, stov(argv(1)));
}
break;
break;
default:
clientcommand(self, cmd);
}
}