Compare commits

...

3 Commits

Author SHA1 Message Date
Griatch
4b47f886bb Update changelog 2025-08-22 07:56:56 +02:00
Griatch
f18d5b6a82
Merge pull request #3806 from gas-public-wooden-clean/exit-pager-session
Exit pager session
2025-08-22 07:54:44 +02:00
gas-public-wooden-clean
cad3501a6c Fix a bug that caused the next command not to have a session assigned when exiting the pager. 2025-08-18 10:28:09 -05:00
3 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@
## Main branch
- [Fix][pull3799]: Fix typo in `basic_tc.py` contrib for beginner tutorial (Tharic99)
- [Fix][pull3806]: EvMore wouldn't pass Session to next cmd when exiting (gas-public-wooden-clean)
- [Doc][pull3801]: Move Evennia doc build system to latest Sphinx/myST
(PowershellNinja, also honorary mention to electroglyph)
- [Doc][pull3800]: Describe support for Telnet SSH in HAProxy documentation (holl0wstar)
@ -10,6 +11,7 @@
[pull3799]: https://github.com/evennia/evennia/issues/3799
[pull3800]: https://github.com/evennia/evennia/issues/3800
[pull3801]: https://github.com/evennia/evennia/issues/3801
[pull3806]: https://github.com/evennia/evennia/issues/3806
## Evennia 5.0.1

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