Merge pull request #138 from ysdragon/dev

Fixed compilation using Clang 16+
This commit is contained in:
smallmodel 2024-01-31 20:43:30 +01:00 committed by GitHub
commit e7fd0f7419
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1593,7 +1593,7 @@ void SV_AddOperatorCommands(void) {
Cmd_AddCommand("say", SV_ConSay_f);
Cmd_AddCommand("tell", SV_ConTell_f);
Cmd_AddCommand("sayto", SV_ConSayto_f);
Cmd_SetCommandCompletionFunc("sayto", SV_CompletePlayerName);
Cmd_SetCommandCompletionFunc("sayto", (completionFunc_t)SV_CompletePlayerName);
}
Cmd_AddCommand("rehashbans", SV_RehashBans_f);