diff --git a/evennia/game_template/world/batch_cmds.ev b/evennia/game_template/world/batch_cmds.ev index 3bd0c21c5..ff5469ee1 100644 --- a/evennia/game_template/world/batch_cmds.ev +++ b/evennia/game_template/world/batch_cmds.ev @@ -1,9 +1,9 @@ # # A batch-command file is a way to build a game world # in a programmatic way, by placing a sequence of -# build commands after one another. This allows for +# build commands after one another. This allows for # using a real text editor to edit e.g. descriptions -# rather than entering text on the command line. +# rather than entering text on the command line. # # A batch-command file is loaded with @batchprocess in-game: # @@ -17,7 +17,7 @@ # and accept arguments in any format up until the first next # comment line begins. Extra whitespace is removed; an empty # line in a command definition translates into a newline. -# +# # See `evennia/contrib/tutorial_examples/batch_cmds.ev` for # an example of a batch-command code. See also the batch-code # system for loading python-code this way.