From fea02b73bce4d56305ac490cc6891c3a301dd1ae Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 29 Jan 2020 11:19:28 +0100 Subject: [PATCH] Remove superfluous get_command_info line. Resolves #2035 --- evennia/commands/command.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/evennia/commands/command.py b/evennia/commands/command.py index dd317dcd6d..eade7516a8 100644 --- a/evennia/commands/command.py +++ b/evennia/commands/command.py @@ -401,15 +401,6 @@ class Command(object, metaclass=CommandMeta): """ pass - def get_command_info(self): - """ - This is the default output of func() if no func() overload is done. - Provided here as a separate method so that it can be called for debugging - purposes when making commands. - - """ - self.get_command_info() - def get_command_info(self): """ This is the default output of func() if no func() overload is done.