From 18e2081f56a1b384220bc0345381de3256f0cc8d Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 10 Mar 2024 22:42:20 +0100 Subject: [PATCH] Remove `@reboot` alias for `@reset` command to avoid confusion on what it does. See #3443 --- CHANGELOG.md | 3 +++ evennia/commands/default/system.py | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8499f1849e..6a3c49036a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ objects based on the visible key and desc. Useful for inventory listings (Griatch) - Feature: Add `DefaultObject.get_numbered_name` `return_string` bool kwarg, for only returning singular/plural based on count instead of a tuple with both (Griatch) +- [Fix][issue3443] Removed the `@reboot` alias to `@reset` to not mislead people + into thinking you can do a portal+server reboot from in-game (you cannot) (Griatch) - Fix: `DefaultObject.get_numbered_name` used `.name` instead of `.get_display_name` which broke recog systems. May lead to object's #dbref will show for admins in some more places (Griatch) @@ -33,6 +35,7 @@ [pull3420]: https://github.com/evennia/evennia/pull/3420 [issue3438]: https://github.com/evennia/evennia/issues/3438 [issue3411]: https://github.com/evennia/evennia/issues/3411 +[issue3443]: https://github.com/evennia/evennia/issues/3443 ## Evennia 3.2.0 diff --git a/evennia/commands/default/system.py b/evennia/commands/default/system.py index 8a1f39b027..546945367e 100644 --- a/evennia/commands/default/system.py +++ b/evennia/commands/default/system.py @@ -100,7 +100,6 @@ class CmdReset(COMMAND_DEFAULT_CLASS): """ key = "@reset" - aliases = ["@reboot"] locks = "cmd:perm(reload) or perm(Developer)" help_category = "System"