Corrected comment for the ingame check on 'create' command

This commit is contained in:
jamesvclemence 2009-01-12 16:29:13 +00:00
parent 623f6bea5a
commit d89f85cb98

View file

@ -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