diff --git a/modules/perform.cpp b/modules/perform.cpp index 419ee4f6..76968e6d 100644 --- a/modules/perform.cpp +++ b/modules/perform.cpp @@ -90,13 +90,13 @@ public: MODCONSTRUCTOR(CPerform) { AddHelpCommand(); AddCommand("Add", static_cast(&CPerform::Add), - ""); + "", "Adds perform command to be sent to the server on connect"); AddCommand("Del", static_cast(&CPerform::Del), - ""); - AddCommand("List", static_cast(&CPerform::List)); - AddCommand("Execute", static_cast(&CPerform::Execute)); + "", "Delete a perform command"); + AddCommand("List", static_cast(&CPerform::List),"", "List the perform commands"); + AddCommand("Execute", static_cast(&CPerform::Execute),"", "Send the perform commands to the server now"); AddCommand("Swap", static_cast(&CPerform::Swap), - " "); + " ", "Swap two perform commands"); } virtual ~CPerform() {}