We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Message is always You may only post once every 1 second but float time is not 1 s.
The reason - wrong constant
$emessage = $tp->lanVars(CHATBOX_L19, FLOODPROTECT ?: 'n/a');
it should be
$emessage = $tp->lanVars(CHATBOX_L19, FLOODTIMEOUT ?: 'n/a');
The text was updated successfully, but these errors were encountered:
Merge pull request #4896 from Jimmi08/patch-1
b90ed71
Fixes #4895 - incorrect message within chatbox plugin
Successfully merging a pull request may close this issue.
Bug Description
Message is always
You may only post once every 1 second
but float time is not 1 s.
How to Reproduce
The reason - wrong constant
$emessage = $tp->lanVars(CHATBOX_L19, FLOODPROTECT ?: 'n/a');
it should be
$emessage = $tp->lanVars(CHATBOX_L19, FLOODTIMEOUT ?: 'n/a');
The text was updated successfully, but these errors were encountered: