Fixed typo. Changed reload argument for evennia.py to be 'reload' rather than 'restart'.

This commit is contained in:
Griatch 2011-09-03 15:10:28 +00:00
parent f13e8cdf7c
commit 71bdc47fbb
2 changed files with 13 additions and 13 deletions

View file

@ -160,7 +160,7 @@ class Evennia(object):
"""
if mode == None:
if os.path.exists(SERVER_RESTART) and 'True' == open(SERVER_RESTART, 'r').read():
mode = 'reload'
mode = 'reload'
else:
mode = 'shutdown'
else: