From 3901b334eb696fb200099e15b66391bd7a78668e Mon Sep 17 00:00:00 2001 From: Tristano Ajmone Date: Thu, 26 Feb 2015 16:37:09 +0100 Subject: [PATCH 1/8] TYPO IN COMMENTS: @batchprocess => @batchcommand Hi Griatch, this was the typo I mentioned the other day about the tutorial's comments. Only I gave you the wrong reference (the README file) but it was in the "build.ev" file! When I first used I got confused because when I tried the command it didn't exist! --- contrib/tutorial_world/build.ev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/tutorial_world/build.ev b/contrib/tutorial_world/build.ev index 1b36b3386..bcfc301ca 100644 --- a/contrib/tutorial_world/build.ev +++ b/contrib/tutorial_world/build.ev @@ -16,7 +16,7 @@ # To load this file, place yourself in Limbo (room #2) and load the # file as user #1 with # -# @batchprocess contrib.tutorial_world.build +# @batchcommand contrib.tutorial_world.build # # If you give the /interactive switch you can step through the # build process command for command. From 187387b11bd5c2589e014de9669af68e000b5393 Mon Sep 17 00:00:00 2001 From: Tristano Ajmone Date: Sun, 1 Mar 2015 10:07:06 +0100 Subject: [PATCH 2/8] TYPO IN COMMENTS: timout => timeout Just a typo in the "settings_default.py" comments.... --- src/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings_default.py b/src/settings_default.py index e1e549575..eecef7efe 100644 --- a/src/settings_default.py +++ b/src/settings_default.py @@ -123,7 +123,7 @@ LANGUAGE_CODE = 'en-us' # How long time (in seconds) a user may idle before being logged # out. This can be set as big as desired. A user may avoid being # thrown off by sending the empty system command 'idle' to the server -# at regular intervals. Set <=0 to deactivate idle timout completely. +# at regular intervals. Set <=0 to deactivate idle timeout completely. IDLE_TIMEOUT = 3600 # The idle command can be sent to keep your session active without actually # having to spam normal commands regularly. It gives no feedback, only updates From 6d4dc91299d4b4c7a14000e696791674af9577e1 Mon Sep 17 00:00:00 2001 From: Tristano Ajmone Date: Sun, 1 Mar 2015 10:24:00 +0100 Subject: [PATCH 3/8] TYPO IN COMMENTS: databse => database Just a typo... --- src/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings_default.py b/src/settings_default.py index eecef7efe..1e15912ce 100644 --- a/src/settings_default.py +++ b/src/settings_default.py @@ -248,7 +248,7 @@ OOB_PLUGIN_MODULES = ["src.server.oob_cmds"] # Default command sets ###################################################################### # Note that with the exception of the unloggedin set (which is not -# stored anywhere in the databse), changing these paths will only affect +# stored anywhere in the database), changing these paths will only affect # NEW created characters/objects, not those already in play. So if you plan to # change this, it's recommended you do it before having created a lot of objects # (or simply reset the database after the change for simplicity). Remember From 7aaf1ff857c10cbe4b01a4276654bc225fcd44a1 Mon Sep 17 00:00:00 2001 From: Tristano Ajmone Date: Sun, 1 Mar 2015 10:31:40 +0100 Subject: [PATCH 4/8] SYNTAX IN COMMENTS defined relative evennia's root => defined relatively to Evennia's root --- src/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings_default.py b/src/settings_default.py index 1e15912ce..8078a832a 100644 --- a/src/settings_default.py +++ b/src/settings_default.py @@ -276,7 +276,7 @@ CMDSET_PATHS = ["game.gamesrc.commands"] SERVER_SESSION_CLASS = "src.server.serversession.ServerSession" # Base paths for typeclassed object classes. These paths must be -# defined relative evennia's root directory. They will be searched in +# defined relatively to Evennia's root directory. They will be searched in # order to find relative typeclass paths. OBJECT_TYPECLASS_PATHS = ["game.gamesrc.objects", "game.gamesrc.objects.examples", From 110af6e5cbc0dcaf1819b595e00b198d11a6290d Mon Sep 17 00:00:00 2001 From: Tristano Ajmone Date: Sun, 1 Mar 2015 10:36:10 +0100 Subject: [PATCH 5/8] ESTHETIC: Missing space in comments #The time factor => # The time factor --- src/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings_default.py b/src/settings_default.py index 8078a832a..a705a8e7c 100644 --- a/src/settings_default.py +++ b/src/settings_default.py @@ -336,7 +336,7 @@ BASE_BATCHPROCESS_PATHS = ['game.gamesrc.world', 'contrib'] # determine the current in-game time. You can of course interpret # "week", "month" etc as your own in-game time units as desired. -#The time factor dictates if the game world runs faster (timefactor>1) +# The time factor dictates if the game world runs faster (timefactor>1) # or slower (timefactor<1) than the real world. TIME_FACTOR = 2.0 # These measures might or might not make sense to your game world. From 08a2898ad7e37128c7c233e4d17fdc21dbb2130e Mon Sep 17 00:00:00 2001 From: Tristano Ajmone Date: Sun, 1 Mar 2015 10:40:29 +0100 Subject: [PATCH 6/8] TYPO IN COMMENTS: hiearchy => hierarchy hiearchy => hierarchy --- src/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings_default.py b/src/settings_default.py index a705a8e7c..674869909 100644 --- a/src/settings_default.py +++ b/src/settings_default.py @@ -383,7 +383,7 @@ MULTISESSION_MODE = 0 # checked by the default ooc char-creation command. Forced to 1 for # MULTISESSION_MODE 0 and 1. MAX_NR_CHARACTERS = 1 -# The access hiearchy, in climbing order. A higher permission in the +# The access hierarchy, in climbing order. A higher permission in the # hierarchy includes access of all levels below it. Used by the perm()/pperm() # lock functions. PERMISSION_HIERARCHY = ["Guests", # note-only used if GUEST_ENABLED=True From 491bb8c2e0f1f1c2dfe28c209577a6d54868ef25 Mon Sep 17 00:00:00 2001 From: Tristano Ajmone Date: Sun, 1 Mar 2015 10:46:25 +0100 Subject: [PATCH 7/8] TYPO: detemines how => deteRmines how --- src/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings_default.py b/src/settings_default.py index 674869909..72bd9df27 100644 --- a/src/settings_default.py +++ b/src/settings_default.py @@ -415,7 +415,7 @@ GUEST_HOME = DEFAULT_HOME # The start position used for guest characters. GUEST_START_LOCATION = START_LOCATION # The naming convention used for creating new guest -# players/characters. The size of this list also detemines how many +# players/characters. The size of this list also determines how many # guests may be on the game at once. The default is a maximum of nine # guests, named Guest1 through Guest9. GUEST_LIST = ["Guest" + str(s+1) for s in range(9)] From f83193fd374aef13e952ae7fe9a4cdd50cce66a2 Mon Sep 17 00:00:00 2001 From: Tristano Ajmone Date: Sun, 1 Mar 2015 10:57:26 +0100 Subject: [PATCH 8/8] TYPO/SYNTAX IN COMMENTS: rather nobody recieve emails => rather PREFER nobody recEIveS emails Apart from the typo, the sentence was a bit tangled. I've changed just a bit to put it in grammatical shape. --- src/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings_default.py b/src/settings_default.py index 72bd9df27..f9c282342 100644 --- a/src/settings_default.py +++ b/src/settings_default.py @@ -496,7 +496,7 @@ DEBUG = False # While true, show "pretty" error messages for template syntax errors. TEMPLATE_DEBUG = DEBUG # Emails are sent to these people if the above DEBUG value is False. If you'd -# rather nobody recieve emails, leave this commented out or empty. +# rather prefer nobody receives emails, leave this commented out or empty. ADMINS = () #'Your Name', 'your_email@domain.com'),) # These guys get broken link notifications when SEND_BROKEN_LINK_EMAILS is True. MANAGERS = ADMINS