summaryrefslogtreecommitdiff
path: root/config_cmds.h
diff options
context:
space:
mode:
Diffstat (limited to 'config_cmds.h')
-rw-r--r--config_cmds.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/config_cmds.h b/config_cmds.h
index 8488cc0..2fc20a5 100644
--- a/config_cmds.h
+++ b/config_cmds.h
@@ -18,15 +18,18 @@ typedef struct single_cmd_def
#include "cmd_cmd.h"
#include "cmd_sha1.h"
+
+//some commands have aliases for compat with some developerslv bots
+//nothing else comaptible will be added, as its not about "standarts"
single_cmd_def confgi_cmd_list[] =
{
{"DATE",cmd_date},
- {"UPTIME",cmd_uptime},
- {"VERSION",cmd_version},
- {"PING",cmd_ping},
+ {"UPTIME",cmd_uptime}, {"!uptime",cmd_uptime},
+ {"VERSION",cmd_version}, {"!version",cmd_version},
+ {"PING",cmd_ping}, {"!ping",cmd_ping},
{"LOADAVG",cmd_loadavg},
{"RUSE",cmd_rusage},
- {"CMD",cmd_cmd},
+ {"CMD",cmd_cmd}, {"!echo",cmd_cmd},
{"SHA1",cmd_sha1},
{NULL,NULL}
};