From 82a80174f0086f1861cae88b0160ea22339894c7 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sat, 18 Jul 2015 08:30:05 +0200 Subject: [PATCH] Removed a faulty default alias in the Command base class; since commands are more strictly compared by key *and* alias, this could cause some confusing overload scenarios. --- evennia/game_template/commands/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/game_template/commands/command.py b/evennia/game_template/commands/command.py index e53686a79..eabf8941f 100644 --- a/evennia/game_template/commands/command.py +++ b/evennia/game_template/commands/command.py @@ -23,7 +23,7 @@ class Command(BaseCommand): # these need to be specified key = "MyCommand" - aliases = ["mycmd", "myc"] + aliases = [] locks = "cmd:all()" help_category = "General"