Fix #1548: fix description of flooddetach commands.

Ref #1549
This commit is contained in:
Alexey Sokolov
2018-06-04 22:27:39 +01:00
parent 4b92790562
commit 664105eabd
+5 -2
View File
@@ -32,9 +32,12 @@ class CFloodDetachMod : public CModule {
AddCommand("Secs", t_d("[<limit>]"),
t_d("Show or set number of seconds in the time interval"),
[=](const CString& sLine) { SecsCommand(sLine); });
AddCommand("Lines", t_d("[<limit>]"), t_d("blahblah: description"),
AddCommand("Lines", t_d("[<limit>]"),
t_d("Show or set number of lines in the time interval"),
[=](const CString& sLine) { LinesCommand(sLine); });
AddCommand("Silent", t_d("[yes|no]"), t_d("blahblah: description"),
AddCommand("Silent", "[yes|no]",
t_d("Show or set whether to notify you about detaching and "
"attaching back"),
[=](const CString& sLine) { SilentCommand(sLine); });
}