Fix a bug that caused the next command not to have a session assigned when exiting the pager.

This commit is contained in:
gas-public-wooden-clean 2025-08-18 10:28:09 -05:00
parent 9024f804f9
commit cad3501a6c
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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):