ok
This commit is contained in:
jenz 2023-01-29 18:10:18 +01:00
commit f4b2c416ba
3 changed files with 5 additions and 2 deletions

View File

@ -55,6 +55,9 @@ bool FloodCheck(int client)
if(client <= 0 || client > MaxClients) if(client <= 0 || client > MaxClients)
return false; return false;
if(!IsClientConnected(client))
return true;
if(++g_Client_CommandCount[client] <= MAX_COMMANDS) if(++g_Client_CommandCount[client] <= MAX_COMMANDS)
return false; return false;

View File

@ -243,7 +243,7 @@
"pt" "{1} foi permanentemente emudecido." "pt" "{1} foi permanentemente emudecido."
"de" "Der Spieler {1} ist für immer im Voice-Chat gesperrt." "de" "Der Spieler {1} ist für immer im Voice-Chat gesperrt."
"fr" "Un mute permanent a été appliqué a {1}." "fr" "Un mute permanent a été appliqué a {1}."
"en" "已对玩家 {1} 永久静音." "chi" "已对玩家 {1} 永久静音."
} }
"Permamuted player reason" "Permamuted player reason"
{ {

View File

@ -29,7 +29,7 @@
"Reason Prompt" "Reason Prompt"
{ {
"en" "Please enter the reason for the report or \"cancel\" to cancel" "en" "Please enter the reason for the report or \"cancel\" to cancel"
"fr" "Veuillez entrer la raison du rapport ou \"cancel\" pour annuler "fr" "Veuillez entrer la raison du rapport ou \"cancel\" pour annuler"
"pl" "Podaj przyczynę zgłoszenia lub \"cancel\", aby anulować" "pl" "Podaj przyczynę zgłoszenia lub \"cancel\", aby anulować"
"chi" "请填写报告填写理由或者 \"cancel\" 来取消" "chi" "请填写报告填写理由或者 \"cancel\" 来取消"
} }