From 5d066a7839c20a4529c778d89e11d2cb68384ddd Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Sun, 27 May 2007 16:43:16 +0000 Subject: [PATCH] @description? wtf was I thinking? It's supposed to be @describe. Fixing. Existing games will need to update their alias lists. --- apps/config/sql/commandalias.sql | 2 +- cmdtable.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/config/sql/commandalias.sql b/apps/config/sql/commandalias.sql index 778d307678..6643bd3482 100644 --- a/apps/config/sql/commandalias.sql +++ b/apps/config/sql/commandalias.sql @@ -6,4 +6,4 @@ INSERT INTO "config_commandalias" VALUES(5,'sa','say'); INSERT INTO "config_commandalias" VALUES(6,'@tel','@teleport'); INSERT INTO "config_commandalias" VALUES(7,'i','inventory'); INSERT INTO "config_commandalias" VALUES(8,'inv','inventory'); -INSERT INTO "config_commandalias" VALUES(9,'@desc','@description'); \ No newline at end of file +INSERT INTO "config_commandalias" VALUES(9,'@desc','@describe'); diff --git a/cmdtable.py b/cmdtable.py index 29552d534c..e8975f0e4c 100644 --- a/cmdtable.py +++ b/cmdtable.py @@ -48,7 +48,7 @@ ctable = { "@cemit": (commands_comsys.cmd_cemit, None), "@clist": (commands_comsys.cmd_clist, None), "@create": (commands_privileged.cmd_create, ("genperms.builder")), - "@description": (commands_privileged.cmd_description, None), + "@describe": (commands_privileged.cmd_description, None), "@destroy": (commands_privileged.cmd_destroy, ("genperms.builder")), "@dig": (commands_privileged.cmd_dig, ("genperms.builder")), "@emit": (commands_privileged.cmd_emit, ("genperms.announce")),