From cad3501a6c581136df192145bd17f77d99311294 Mon Sep 17 00:00:00 2001 From: gas-public-wooden-clean Date: Mon, 18 Aug 2025 10:28:09 -0500 Subject: [PATCH] Fix a bug that caused the next command not to have a session assigned when exiting the pager. --- docs/source/index.md | 2 +- evennia/utils/evmore.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/index.md b/docs/source/index.md index fbbf17320a..79c723e1b6 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -1,6 +1,6 @@ # Evennia Documentation -This is the manual of [Evennia](https://www.evennia.com), the open source Python `MU*` creation system. Use the Search bar on the left to find or discover interesting articles. This manual was last updated outubro 26, 2024, see the [Evennia Changelog](Coding/Changelog.md). Latest released Evennia version is 5.0.1. +This is the manual of [Evennia](https://www.evennia.com), the open source Python `MU*` creation system. Use the Search bar on the left to find or discover interesting articles. This manual was last updated October 26, 2024, see the [Evennia Changelog](Coding/Changelog.md). Latest released Evennia version is 5.0.1. - [Introduction](./Evennia-Introduction.md) - what is this Evennia thing? - [Evennia in Pictures](./Evennia-In-Pictures.md) - a visual overview of Evennia diff --git a/evennia/utils/evmore.py b/evennia/utils/evmore.py index 3bbd42d425..110d9e401d 100644 --- a/evennia/utils/evmore.py +++ b/evennia/utils/evmore.py @@ -121,7 +121,7 @@ class CmdMoreExit(Command): more.page_quit() # re-fire the command (in new cmdset) - self.caller.execute_cmd(self.raw_string) + self.caller.execute_cmd(self.raw_string, session=self.session) class CmdSetMore(CmdSet):