diff --git a/docs/source/Setup/Settings-Default.md b/docs/source/Setup/Settings-Default.md index ab9ecd9922..a48451b8ad 100644 --- a/docs/source/Setup/Settings-Default.md +++ b/docs/source/Setup/Settings-Default.md @@ -605,7 +605,7 @@ OPTIONS_ACCOUNT_DEFAULT = { "column_names_color": ("Table column header text.", "Color", "w"), "help_category_color": ("Help category names.", "Color", "n"), "help_entry_color": ("Help entry names.", "Color", "n"), - "timezone": ("Timezone for dates. @tz for a list.", "Timezone", "UTC"), + "timezone": ("Timezone for dates.", "Timezone", "UTC"), } # Modules holding Option classes, responsible for serializing the option and # calling validator functions on it. Same-named functions in modules added diff --git a/evennia/settings_default.py b/evennia/settings_default.py index c0fcf6a5c0..a4ad4fbf8d 100644 --- a/evennia/settings_default.py +++ b/evennia/settings_default.py @@ -586,7 +586,7 @@ OPTIONS_ACCOUNT_DEFAULT = { "column_names_color": ("Table column header text.", "Color", "w"), "help_category_color": ("Help category names.", "Color", "n"), "help_entry_color": ("Help entry names.", "Color", "n"), - "timezone": ("Timezone for dates. @tz for a list.", "Timezone", "UTC"), + "timezone": ("Timezone for dates.", "Timezone", "UTC"), } # Modules holding Option classes, responsible for serializing the option and # calling validator functions on it. Same-named functions in modules added