From d47e0e057d2e81ffc5285a69965a72e0d57aec15 Mon Sep 17 00:00:00 2001 From: Bradley Marques Date: Mon, 10 Apr 2023 12:18:30 +0200 Subject: [PATCH] Removes extra whitespace --- docs/source/Components/Exits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Components/Exits.md b/docs/source/Components/Exits.md index e3cf5de630..02a6f73a2a 100644 --- a/docs/source/Components/Exits.md +++ b/docs/source/Components/Exits.md @@ -31,7 +31,7 @@ The default exit functionality is all defined on the [DefaultExit](DefaultExit) Exits are [locked](./Locks.md) using an `access_type` called *traverse* and also make use of a few hook methods for giving feedback if the traversal fails. See `evennia.DefaultExit` for more info. -Exits are normally overridden on a case-by-case basis, but if you want to change the default exit created by rooms like `dig` , `tunnel` or `open` you can change it in settings: +Exits are normally overridden on a case-by-case basis, but if you want to change the default exit created by rooms like `dig`, `tunnel` or `open` you can change it in settings: BASE_EXIT_TYPECLASS = "typeclasses.exits.Exit"