From 6fa5e42909911fbc2683de4bc7b2b35b8110b53b Mon Sep 17 00:00:00 2001 From: Griatch Date: Sat, 19 May 2012 11:01:48 +0200 Subject: [PATCH] Fixed a typo in the example command template. --- game/gamesrc/commands/examples/command.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/gamesrc/commands/examples/command.py b/game/gamesrc/commands/examples/command.py index c5ba0e7393..1753a0430a 100644 --- a/game/gamesrc/commands/examples/command.py +++ b/game/gamesrc/commands/examples/command.py @@ -9,7 +9,7 @@ examples/cmdset.py) """ from ev import Command as BaseCommand -from ev import default_cmd +from ev import default_cmds from ev import utils class Command(BaseCommand): @@ -89,7 +89,7 @@ class Command(BaseCommand): pass -class MuxCommand(default_cmd.MuxCommand): +class MuxCommand(default_cmds.MuxCommand): """ This sets up the basis for a Evennia's 'MUX-like' command style. The idea is that most other Mux-related commands should