From 664105eabdedade760f026f524c1f6039f3e0531 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Mon, 4 Jun 2018 22:27:39 +0100 Subject: [PATCH] Fix #1548: fix description of flooddetach commands. Ref #1549 --- modules/flooddetach.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/flooddetach.cpp b/modules/flooddetach.cpp index f58dfb09..946c6029 100644 --- a/modules/flooddetach.cpp +++ b/modules/flooddetach.cpp @@ -32,9 +32,12 @@ class CFloodDetachMod : public CModule { AddCommand("Secs", t_d("[]"), t_d("Show or set number of seconds in the time interval"), [=](const CString& sLine) { SecsCommand(sLine); }); - AddCommand("Lines", t_d("[]"), t_d("blahblah: description"), + AddCommand("Lines", t_d("[]"), + 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); }); }