From d89f85cb983b612687894869904ec4f3212a789f Mon Sep 17 00:00:00 2001 From: jamesvclemence Date: Mon, 12 Jan 2009 16:29:13 +0000 Subject: [PATCH] Corrected comment for the ingame check on 'create' command --- src/commands/unloggedin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/unloggedin.py b/src/commands/unloggedin.py index 40894c8a0..dcfb56e2a 100644 --- a/src/commands/unloggedin.py +++ b/src/commands/unloggedin.py @@ -15,7 +15,7 @@ def cmd_connect(command): session = command.session - # Check whether command is being issued in-game + # Check whether command is being issued in-game. if str(session.get_pobject()) != 'None': session.msg("Connect command unavailable in-game") return @@ -56,7 +56,7 @@ def cmd_create(command): """ session = command.session - #If this command is issued in game, + # Check whether command is being issued ingame. if str(session.get_pobject()) != 'None': session.msg("Create command unavailable in-game") return