From aa631a5ee7b1608c780ac197ec33c5d8cad463ef Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 19 Sep 2015 09:50:03 +0300 Subject: [PATCH] perform: add descriptions for commands Thanks @ChasedSpade Closes #1100 Closes #1102 --- modules/perform.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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() {}